__init__(self,
lower=None,
upper=None,
inclusive=False,
mode=' select ' ,
**kwargs)
(Constructor)
| source code
|
Initialization RangeElementSelector
upper could be lower than lower -- then selection is done
on values <= lower or >=upper (ie tails). This would produce
the same result if called with flipped values for mode and
inclusive.
If no upper no lower is set, assuming upper,lower=0, thus
outputing non-0 elements
- Parameters:
lower - If not None -- select elements which are above of
specified value
upper - If not None -- select elements which are lower of
specified value
inclusive - Either to include end points
mode - overrides parent's default to be 'select' since it is more
native for RangeElementSelector
XXX TODO -- unify??
- Overrides:
object.__init__
|