NAME¶
Attean::RDF - Utility package for exporting shorthand functions for constructing
RDF objects
VERSION¶
This document describes Attean::RDF version 0.021
DESCRIPTION¶
This is a utility package for exporting shorthand functions for constructing RDF
objects such as IRIs, Literals, Blanks, Triples, etc.
FUNCTIONS¶
All of the functions defined in this package may be exported (and are exported
by default).
- "variable( $value )"
- "Attean::Variable->new($value)"
- "iri( $value )"
- "Attean::IRI->new($value)"
- "blank( $value )"
- "Attean::Blank->new($value)"
- "literal( $value )"
- "Attean::Literal->new($value)"
- "dtliteral( $value, $dt )"
- "Attean::Literal->new( value => $value,
datatype => $dt )"
- "langliteral( $value, $lang )"
- "Attean::Literal->new( value => $value,
language => $lang )"
- "triple( @terms )"
- "Attean::Triple->new( @terms )"
- "triplepattern( @terms )"
- "Attean::TriplePattern->new( @terms
)"
- "quad( @terms )"
- "Attean::Quad->new( @terms )"
- "quadpattern( @terms )"
- "Attean::QuadPattern->new( @terms
)"
- "bgp( @triplepatterns )"
- "Attean::Algebra::BGP->new( triples =>
\@triplepatterns )"
AUTHOR¶
Gregory Todd Williams
"<gwilliams@cpan.org>"
COPYRIGHT¶
Copyright (c) 2014--2018 Gregory Todd Williams. This program is free software;
you can redistribute it and/or modify it under the same terms as Perl itself.