EEx.eval_string
You're seeing just the function
eval_string, go back to EEx module for more information.
Specs
Gets a string source and evaluate the values using the bindings.
Examples
iex> EEx.eval_string("foo <%= bar %>", bar: "baz")
"foo baz"