Kernel.ParallelCompiler.require

You're seeing just the function require, go back to Kernel.ParallelCompiler module for more information.
Link to this function

require(files, options \\ [])

View Source (since 1.6.0)

Requires the given files in parallel.

Opposite to compile, dependencies are not attempted to be automatically solved between files.

It returns {:ok, modules, warnings} or {:error, errors, warnings}.

Both errors and warnings are a list of three-element tuples containing the file, line and the formatted error/warning.

Options

  • :each_file - for each file compiled, invokes the callback passing the file

  • :each_module - for each module compiled, invokes the callback passing the file, module and the module bytecode