1.1.0 - Added `echo` functions
Like it says on the tin, these just echo what they're given.
The first version simply returns the value it's given. This is useful for reusing the input of higher-order functions:
let withoutNils = arrayOfOptionals.compactMap(echo)
The second version is useful for flattening collections of generators:
let values = generators.map(echo)