Package fuzzy :: Package operator :: Module Operator :: Class Operator
[hide private]
[frames] | no frames]

Class Operator

source code


Abstract base class for any kind of operator.

Instance Methods [hide private]
 
__init__(self)
Dummy initialization, so it is safe to call it from any sub class.
source code
float
__call__(self)
Return current value.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

Dummy initialization, so it is safe to call it from any sub class.

Overrides: object.__init__

__call__(self)
(Call operator)

source code 

Return current value.

Returns: float
result of operator calculation
Raises: