Macro reasonable::rdfs[][src]

macro_rules! rdfs {
    ($t : expr) => { ... };
}
Expand description

Returns the full URI of the concept in the RDFS namespace

let uri = rdfs!("subClassOf");
assert_eq!(uri, Term::NamedNode(NamedNode::new_unchecked("http://www.w3.org/2000/01/rdf-schema#subClassOf".to_string())));