class documentation

class _DomainCheckInterval:

View In Hierarchy

Define a valid interval, so that :

domain_check_interval(a,b)(x) == True where x < a or x > b.

Method __call__ Execute the call behavior.
Method __init__ domain_check_interval(a,b)(x) = true where x < a or y > b
Instance Variable a Undocumented
Instance Variable b Undocumented
def __call__(self, x):
Execute the call behavior.
def __init__(self, a, b):
domain_check_interval(a,b)(x) = true where x < a or y > b
a =

Undocumented

b =

Undocumented