Esempio n. 1
0
 def _serialize(self, stream):
     """Serialize this tree into the stream. Please note that we will assume 
     our tree data to be in a sorted state. If this is not the case, serialization
     will not generate a correct tree representation as these are assumed to be sorted
     by algorithms"""
     tree_to_stream(self._cache, stream.write)
     return self
Esempio n. 2
0
    def _serialize(self, stream):
        """Serialize this tree into the stream. Please note that we will assume 
		our tree data to be in a sorted state. If this is not the case, serialization
		will not generate a correct tree representation as these are assumed to be sorted
		by algorithms"""
        tree_to_stream(self._cache, stream.write)
        return self