orkgnlp.common.util.decorators.singleton

singleton(_)[source]

This decorator can only be used above the __new__ function of a class. It’s responsible for returning a pre-created instance of the respective class or create a new one, if not have happened before.

Parameters

_ – The __new__ function.