Return a list of all CQ objects on the stack. useful when you need to operate on the elements individually. Contrast with vals, which returns the underlying objects for all of the items on the stack
(self: T)
| 344 | return self.newObject(rv) |
| 345 | |
| 346 | def all(self: T) -> List[T]: |
| 347 | """ |
| 348 | Return a list of all CQ objects on the stack. |
| 349 | |
| 350 | useful when you need to operate on the elements |
| 351 | individually. |
| 352 | |
| 353 | Contrast with vals, which returns the underlying |
| 354 | objects for all of the items on the stack |
| 355 | """ |
| 356 | return [self.newObject([o]) for o in self.objects] |
| 357 | |
| 358 | def size(self) -> int: |
| 359 | """ |