Changelog
View Sourcev0.1.2 (2025-07-24)
- Updated project logo
v0.1.1 (2025-07-24)
- Documentation improvements in
README.md
- Updated project logo
v0.1.0 (2025-07-13)
Initial release of Loe, a tiny Elixir library for chaining and transforming raw, {:ok, _}
, and {:error, _}
values.
- Added
lift/2
— Applies a function to raw or success values.tfil/2
— Applies a function to error values only.unwrap!/1
— Extracts the{:ok, value}
or raises on error.~>>
— Infix macro for chaining withlift/2
.<~>
— Infix macro for chaining withtfil/2
.