API Reference ExAequo v0.3.0
Modules
Namespace only and exposing version
## All kind of File related stuff
Tools to facilitate dispatching on keyword parameters, used in contexts like the following
@defaults [a: 1, b: false] # Keyword or Map
def some_fun(..., options \ []) # options again can be a Keyword or Map
{a, b} = tuple_from_params(@defaults, options, [:a, :b])
Merging defaults and actual parameters
Its most useful feature is that you will get a map whatever the mixtures of maps and keywords the input was
Extending Elixir's Path module with some useful functions