Return the number of objects currently on the stack
(self)
| 356 | return [self.newObject([o]) for o in self.objects] |
| 357 | |
| 358 | def size(self) -> int: |
| 359 | """ |
| 360 | Return the number of objects currently on the stack |
| 361 | """ |
| 362 | return len(self.objects) |
| 363 | |
| 364 | def vals(self) -> List[CQObject]: |
| 365 | """ |
no outgoing calls