API Reference hike v0.0.1
modules
Modules
The Hike.Option
module provides an implementation of the Optional data type.
It defines a struct Option
with a single field value
which can either be @none
or any other value of type t
. This implementation provides functions to work with
Optional data, including mapping, filtering, applying and many more functions to the value
inside the Optional data.