rdf-ex/lib/rdf/resource.ex
2022-03-13 21:39:48 +01:00

11 lines
232 B
Elixir

defmodule RDF.Resource do
@moduledoc """
Shared functions over `RDF.IRI`s and `RDF.BlankNode`s.
"""
alias RDF.{IRI, BlankNode}
@type t :: IRI.t() | BlankNode.t()
@type coercible :: IRI.coercible() | BlankNode.t()
end