Package jazzparser :: Package misc :: Package tree :: Module datastructs :: Class MutableTree
[hide private]
[frames] | no frames]

Class MutableTree

source code

object --+    
         |    
  BaseTree --+
             |
            MutableTree

Normal mutable tree data structure. This should be used for most purposes.

Instance Methods [hide private]
 
__init__(self, root)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
immutable(self)
Get an immutable version of the graph.
source code
 
mutable(self) source code

Inherited from BaseTree: __eq__, __getitem__, __len__, __repr__, __str__, can_embed_subtree, copy, find_parent, postorder, postorder_index, replace_node, unordered_equal

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, root)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)