Kaur v1.1.0 Kaur View Source

Generic utilities working with any kind of data.

Link to this section Summary

Functions

Calls the next function but discards the result. It always returns the original value

Link to this section Functions

Calls the next function but discards the result. It always returns the original value.

Examples

iex> business_logic = fn x -> x * 2 end …> Kaur.tap(42, business_logic) 42