Return the ith item on the stack. :rtype: a CQ object
(self: T, i: int)
| 651 | return self.newObject(self.objects[0:1]) |
| 652 | |
| 653 | def item(self: T, i: int) -> T: |
| 654 | """ |
| 655 | Return the ith item on the stack. |
| 656 | |
| 657 | :rtype: a CQ object |
| 658 | """ |
| 659 | return self.newObject([self.objects[i]]) |
| 660 | |
| 661 | def last(self: T) -> T: |
| 662 | """ |