Feature requestgood first issuehelp wanted
Repository metrics
- Stars
- (240 stars)
- PR merge metrics
- (PR metrics pending)
Description
An extension method should be implemented which will be similar to Smalltalk collect method
From Smalltalk wiki:
Often we want to perform an operation on each element and then return the results as another collection.
myOC collect: [ :element | element + 5 ].