Lazy Sequences in Swift
Published on
Lazy Sequences in Swift
If you have been writing Swift for a while, you have undoubtedly used high order functions such as .map
and filter
. These higher order function work on any collection, and they are very useful when we want to quickly transform objects into something else, or when you want to do other operations in sequences that would otherwise take more than one line of code if you were to make them with loops.