Inspect.Algebra.glue
You're seeing just the function
glue, go back to Inspect.Algebra module for more information.
Specs
Glues two documents (doc1 and doc2) inserting the given
break break_string between them.
For more information on how the break is inserted, see break/1.
Examples
iex> doc = Inspect.Algebra.glue("hello", "world")
iex> Inspect.Algebra.format(doc, 80)
["hello", " ", "world"]
iex> doc = Inspect.Algebra.glue("hello", "\t", "world")
iex> Inspect.Algebra.format(doc, 80)
["hello", "\t", "world"]