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

Returns the full URI of the concept in the OWL namespace

let uri = owl!("Thing");
assert_eq!(uri, Term::NamedNode(NamedNode::new_unchecked("http://www.w3.org/2002/07/owl#Thing".to_string())));