Kernel.to_string
You're seeing just the macro
to_string
, go back to Kernel module for more information.
Converts the argument to a string according to the
String.Chars
protocol.
This is the function invoked when there is string interpolation.
Examples
iex> to_string(:foo)
"foo"