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.
Link to this function

prefixed_name_to_iri(prefix_map, prefixed_name)

View Source

Specs

prefixed_name_to_iri(t(), String.t()) :: RDF.IRI.t() | nil

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>