Package SCons :: Package compat :: Module _scons_sets :: Class ImmutableSet
[hide private]
[frames] | no frames]

Class ImmutableSet

source code

object --+    
         |    
   BaseSet --+
             |
            ImmutableSet

Immutable set class.
Instance Methods [hide private]
 
__init__(self, iterable=None)
Construct an immutable set from an optional iterable.
source code
 
__hash__(self)
hash(x)
source code
 
__getstate__(self) source code
 
__setstate__(self, state) source code

Inherited from BaseSet: __and__, __cmp__, __contains__, __copy__, __deepcopy__, __eq__, __ge__, __gt__, __iter__, __le__, __len__, __lt__, __ne__, __or__, __repr__, __str__, __sub__, __xor__, copy, difference, intersection, issubset, issuperset, symmetric_difference, union

Inherited from BaseSet (private): _binary_sanity_check, _compute_hash, _repr, _update

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

Properties [hide private]
  _hashcode

Inherited from BaseSet (private): _data

Inherited from object: __class__

Method Details [hide private]

__init__(self, iterable=None)
(Constructor)

source code 
Construct an immutable set from an optional iterable.
Overrides: object.__init__

__hash__(self)
(Hashing function)

source code 
hash(x)
Overrides: object.__hash__
(inherited documentation)