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

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

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