Packages

REnum is Enum extended with convenient functions inspired by Ruby and Rails ActiveSupport.

Current section

Files

Jump to
r_enum lib r_enum.ex
Raw

lib/r_enum.ex

defmodule REnum do
@moduledoc """
Entry point of Enum extensions, and can use all of REnum.* functions.
See also
- [REnum.Native](https://hexdocs.pm/r_enum/REnum.Native.html#content)
- [REnum.Ruby](https://hexdocs.pm/r_enum/REnum.Ruby.html#content)
- [REnum.Support](https://hexdocs.pm/r_enum/REnum.Support.html#content)
"""
use REnum.Native
use REnum.Ruby
use REnum.ActiveSupport
use REnum.Support
end