Package pylal :: Module metaarray :: Class _elementwise_method
[hide private]
[frames] | no frames]

Class _elementwise_method

source code

object --+
         |
        _elementwise_method

Used to attach methods to MetaArrayLists. Wrap ndarray methods that operate upon arrays and apply them to each element of the list.

__init__ gets called when we define the MetaArrayList class and attach methods. __get__ gets called on the list object at method call time. __call__ is called immediately after __get__.

Instance Methods [hide private]
 
__init__(self, methname)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__get__(self, list, listtype=None) source code
 
__call__(self, *others, **params) 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, methname)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)