Define triple by class, type.
a_class-methods.Rda_class() is a helper function to mimic the a <Class> pattern
in sparql.
While a_class() could be called directly, the intended use is to serve as a
template to generate prefix-specific functions for each type known by the
endpoint.
Examples
# a_class defines a triple:
# a_class() handles '?' symbols.
a_class(A, what = "type", prefix = "p")
#> pallas::triple character S7_object.
#> subject predicate object
#> A a p:type .
a_class(?A, what = "type", prefix = "p")
#> pallas::triple character S7_object.
#> subject predicate object
#> ?A a p:type .
a_class(p_A:A, what = "type", prefix = "p")
#> pallas::triple character S7_object.
#> subject predicate object
#> p_A:A a p:type .