RDF.PrefixMap.prefixed_name_to_iri
You're seeing just the function
prefixed_name_to_iri
, go back to RDF.PrefixMap module for more information.
Specs
Converts a prefixed name into an IRI.
Returns nil
when the prefix in prefixed_name
is not defined in prefix_map
.
Examples
iex> RDF.PrefixMap.new(ex: "http://example.com/")
...> |> RDF.PrefixMap.prefixed_name_to_iri("ex:Foo")
~I<http://example.com/Foo>