Code.compiler_options

You're seeing just the function compiler_options, go back to Code module for more information.

Specs

compiler_options() :: map()

Gets all compilation options from the code server.

To get individual options, see get_compiler_option/1. For a description of all options, see put_compiler_option/2.

Examples

Code.compiler_options()
#=> %{debug_info: true, docs: true, ...}

Specs

compiler_options(Enumerable.t()) :: %{optional(atom()) => boolean()}

Stores all given compilation options.

To store individual options, see put_compiler_option/2. For a description of all options, see put_compiler_option/2.

Examples

Code.compiler_options()
#=> %{debug_info: true, docs: true, ...}