Return the results of a method applied to each field.
fl.method(name, *args, **kwargs) is equivalent to fl.name(*args, **kwargs).
Parameters : |
|
---|---|
Returns : |
|
See also
Examples
>>> fl.getprop('standard_name')
['air_temperature', 'eastward_wind']
>>> fl.method('getprop', 'standard_name')
['air_temperature', 'eastward_wind']
>>> fl.method('squeeze')
[None, None]