class documentation

class _DomainCheckInterval: (source)

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): (source)

Execute the call behavior.

def __init__(self, a, b): (source)

domain_check_interval(a,b)(x) = true where x < a or y > b

Undocumented

Undocumented