MazeGenerator.new

You're seeing just the function new, go back to MazeGenerator module for more information.
Link to this function

new(width, height, algorithm \\ :recursive_backtracker)

View Source

Specs

new(non_neg_integer(), non_neg_integer(), atom()) ::
  {:ok, MazeGenerator.Grid.t()} | {:error, String.t()}

Generates a new maze of the specified width and height using the requested algorithm. Does not generate an ingress or egress.