qubx :: accept :: FuncAcceptor :: Class FuncAcceptor
[hide private]
[frames] | no frames]

Class FuncAcceptor

source code

object --+
         |
        FuncAcceptor

FuncAcceptor instance is callable as fa(x, custom1, custom2, ...).

Instance Methods [hide private]
 
__init__(self, f, args, expr, local_args=[], local_vals=[], recipe='', static=None, typ=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__call__(self, *args, **kw) source code
 
__str__(self)
str(x)
source code
 
__repr__(self)
repr(x)
source code
 
__getnewargs__(self) source code
 
__getstate__(self) source code
 
__setstate__(self, state) source code

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

Instance Variables [hide private]
  args
a list of argument names, starting with "x"
  expr
the function string as it was entered
  f
the expression as lambda locals..., x, custom1, custom2, ...:
  local_args
names of defined local vars
  local_vals
corresponding values
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, f, args, expr, local_args=[], local_vals=[], recipe='', static=None, typ=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)