Next: SequenceableCollection-copying SequenceableCollections, Previous: SequenceableCollection-comparing, Up: SequenceableCollection [Index]
Answer a new collection like my first element, with all the elements (in order) of all my elements (which should be collections) separated by sepCollection.
I use my first element instead of myself as a prototype because my elements are more likely to share the desired properties than I am, such as in:
#(’hello,’ ’world’) join: ’ ’ => ’hello, world’
Return an Array with the same size as the receiver and aSequenceableCollection, each element of which is a 2-element Arrays including one element from the receiver and one from aSequenceableCollection.
Return an Array with the same size as the receiver and the arguments, each element of which is a 3-element Arrays including one element from the receiver and one from each argument.
Return an Array with the same size as the receiver and the arguments, each element of which is a 4-element Arrays including one element from the receiver and one from each argument.