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

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

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