RDF.IRI.append
You're seeing just the function
append
, go back to RDF.IRI module for more information.
Specs
Appends a String to a RDF.IRI
.
Example
iex> ~I<http://example.com/> |> RDF.IRI.append("foo")
~I<http://example.com/foo>
iex> EX.foo |> RDF.IRI.append("bar")
EX.foobar
iex> EX.Foo |> RDF.IRI.append("bar")
RDF.iri(EX.Foobar)