DOKK / manpages / debian 10 / librdf-ns-perl / RDF::NS::Trine.3pm.en
RDF::NS::Trine(3pm) User Contributed Perl Documentation RDF::NS::Trine(3pm)

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

  use RDF::NS::Trine;
  use constant NS => RDF::NS::Trine->new('20170111');
  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

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!

BLANK ( [ $short ] )

Returns a new RDF::Trine::Node::Blank.

This software is copyright (c) 2013- by Jakob Voss.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2017-01-12 perl v5.24.1