Next: Iterable-iteration, Previous: Iterable class-multibyte encodings, Up: Iterable [Index]
Answer an iterable that enumerates first the elements of the receiver and then the elements of anIterable.
Search the receiver for an element for which aBlock returns false. Answer true if none does, false otherwise.
Search the receiver for an element for which aBlock returns true. Answer true if some does, false otherwise.
Answer a new instance of a Collection containing all the results of evaluating aBlock passing each of the receiver’s elements
Search the receiver for an element for which aBlock returns false. Answer true if none does, false otherwise.
Search the receiver for an element for which aBlock returns true. Answer true if some does, false otherwise.
Count the elements of the receiver for which aBlock returns true, and return their number.
Search the receiver for an element for which aBlock returns true. If some does, answer it. If none does, fail
Search the receiver for an element for which aBlock returns true. If some does, answer it. If none does, answer the result of evaluating aBlock
Enumerate each object of the receiver, passing them to aBlock
Enumerate each object of the receiver, passing them to aBlock. Between every two invocations of aBlock, invoke separatorBlock
First, pass to binaryBlock the first and second elements of the receiver; for each subsequent element, pass the result of the previous evaluation and an element. Answer the result of the last invocation, or the first element if the collection has size 1. Fail if the collection is empty.
First, pass to binaryBlock thisValue and the first element of the receiver; for each subsequent element, pass the result of the previous evaluation and an element. Answer the result of the last invocation.
Search the receiver for an element for which aBlock returns true. Answer true if none does, false otherwise.
Answer a new instance of a Collection containing all the elements in the receiver which, when passed to aBlock, don’t answer true
Answer a new instance of a Collection containing all the elements in the receiver which, when passed to aBlock, answer true
Next: Iterable-iteration, Previous: Iterable class-multibyte encodings, Up: Iterable [Index]