View Source alias (util v1.1.5)

Creation of module aliases

Link to this section Summary

Functions

Create a module Alias for the given OrigMod module. This function is useful for creating in-memory Elixir wrapper modules without needing to maintain persistent files with such wrappers. IncFuns argument can be all or a list of {Fun, Arity} values which only export a subset of functions from the OrigMod.

Link to this section Functions

Create a module Alias for the given OrigMod module. This function is useful for creating in-memory Elixir wrapper modules without needing to maintain persistent files with such wrappers. IncFuns argument can be all or a list of {Fun, Arity} values which only export a subset of functions from the OrigMod.
Link to this function

create(Alias, OrigMod, IncFuns)

View Source