RDF.Graph.statement_count
You're seeing just the function
statement_count
, go back to RDF.Graph module for more information.
Specs
statement_count(t()) :: non_neg_integer()
The number of statements within a RDF.Graph
.
Examples
iex> RDF.Graph.new([
...> {EX.S1, EX.p1, EX.O1},
...> {EX.S2, EX.p2, EX.O2},
...> {EX.S1, EX.p2, EX.O3}])
...> |> RDF.Graph.statement_count()
3