Next: OrderedCollection-built ins, Previous: OrderedCollection-accessing, Up: OrderedCollection [Index]
Add anObject in the receiver, answer it
Add newObject in the receiver just after oldObject, answer it. Fail if oldObject can’t be found
Add newObject in the receiver just after the i-th, answer it. Fail if i < 0 or i > self size
Add newObject in the receiver just before oldObject, answer it. Fail if oldObject can’t be found
Add newObject in the receiver just before the i-th, answer it. Fail if i < 1 or i > self size + 1
Add every item of aCollection to the receiver, answer it
Add every item of newCollection to the receiver just after oldObject, answer it. Fail if oldObject is not found
Add every item of newCollection to the receiver just after the i-th, answer it. Fail if i < 0 or i > self size
Add every item of newCollection to the receiver just before oldObject, answer it. Fail if oldObject is not found
Add every item of newCollection to the receiver just before the i-th, answer it. Fail if i < 1 or i > self size + 1
Add every item of newCollection to the receiver right at the start of the receiver. Answer aCollection
Add every item of newCollection to the receiver right at the end of the receiver. Answer aCollection
Add newObject to the receiver right at the start of the receiver. Answer newObject
Add newObject to the receiver right at the end of the receiver. Answer newObject
Next: OrderedCollection-built ins, Previous: OrderedCollection-accessing, Up: OrderedCollection [Index]