Example #1
0
 def pop(self):
     """Return a PersistentVector with one item, this AMapEntry's key."""
     return createVector(self.getKey())
Example #2
0
    def asVector(self):
        """Return a PersistentVector.

        The vector will contain two objects, the key and value."""
        return createVector(self.getKey(), self.getValue())
Example #3
0
 def pop(self):
     return createVector(self.getKey())
Example #4
0
 def asVector(self):
     return createVector(self.getKey(), self.getValue())
Example #5
0
 def pop(self):
     """Return a PersistentVector with one item, this AMapEntry's key."""
     return createVector(self.getKey())
Example #6
0
    def asVector(self):
        """Return a PersistentVector.

        The vector will contain two objects, the key and value."""
        return createVector(self.getKey(), self.getValue())