object/pipe_utils library

Also/let style (pipe value through function). Roadmap #202.

Functions

also<T>(T value, void fn(T)) → T
Runs fn for its side effects on value and returns value unchanged.
let<T, R>(T value, R fn(T)) → R
Applies fn to value and returns its result.