RDF.Description.predicates
You're seeing just the function
predicates
, go back to RDF.Description module for more information.
Specs
The set of all properties used in the predicates within a RDF.Description
.
Examples
iex> RDF.Description.new(EX.S1, init: [
...> {EX.p1, EX.O1},
...> {EX.p2, EX.O2},
...> {EX.p2, EX.O3}])
...> |> RDF.Description.predicates()
MapSet.new([EX.p1, EX.p2])