11 lines
232 B
Elixir
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
|