Package PyFoam :: Package Basics :: Module DataStructures :: Class FoamDataType
[hide private]
[frames] | no frames]

Class FoamDataType

source code


Instance Methods [hide private]
 
__eq__(self, other)
Implementation to make __cmp__ work again in Python3
source code
 
__ge__(self, other) source code
 
__gt__(self, other) source code
 
__le__(self, other) source code
 
__lt__(self, other)
Implementation to make __cmp__ work again in Python3
source code
 
__ne__(self, other) source code
 
__repr__(self)
repr(x)
source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__eq__(self, other)
(Equality operator)

source code 

Implementation to make __cmp__ work again in Python3

Implementing this method means that these objects are not hashable. But that is OK

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)