logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

RDF::NS::Trine - Popular RDF namespace prefixes from prefix.cc as RDF::Trine nodes

Additional Methods

BLANK([$short])
       Returns a new RDF::Trine::Node::Blank.

Description

       RDF::NS::Trine works like RDF::NS but it returns instances of RDF::Trine::Node::Resource (or
       RDF::Trine::Node::Blank) instead of strings.

       Before using this module, make sure to install RDF::Trine, which is not installed automatically together
       with RDF::NS!

Name

       RDF::NS::Trine - Popular RDF namespace prefixes from prefix.cc as RDF::Trine nodes

Synopsis

         use RDF::NS::Trine;
         use constant NS => RDF::NS::Trine->new('20230619');

         NS->foaf_Person;        # iri('http://xmlns.com/foaf/0.1/Person')
         NS->uri('foaf:Person);  #  same RDF::Trine::Node::Resource
         NS->foaf_Person->uri;   # http://xmlns.com/foaf/0.1/Person

         NS->_;                  # RDF::Trine::Node::Blank
         NS->_abc;               # blank node with id 'abc'
         NS->uri('_:abc');       # same

See Also