VegaLite.concat

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

concat(vl, child_views, type \\ :wrappable)

View Source

Specs

concat(t(), [t()], :wrappable | :horizontal | :vertical) :: t()

Builds a concatenated multi-view specification from the given list of single view specifications.

The concat type must be either :wrappable (default), :horizontal or :vertical.

Examples

Vl.new()
|> Vl.data_from_values(...)
|> Vl.concat([
  Vl.new()
  |> ...,
  Vl.new()
  |> ...,
  Vl.new()
  |> ...
])

Vl.new()
|> Vl.data_from_values(...)
|> Vl.concat(
  [
    Vl.new()
    |> ...,
    Vl.new()
    |> ...
  ],
  :horizontal
)

See the docs for more details.