AtteanX::Parser::SPARQL(3pm) | User Contributed Perl Documentation | AtteanX::Parser::SPARQL(3pm) |
AtteanX::Parser::SPARQL - SPARQL 1.1 Parser.
This document describes AtteanX::Parser::SPARQL version 0.033.
use AtteanX::Parser::SPARQL; my $algbrea = AtteanX::Parser::SPARQL->parse($sparql); # or: my $parser = AtteanX::Parser::SPARQL->new(); my ($algebra) = $parser->parse_list_from_bytes($sparql); # or to allow parsing of SPARQL 1.1 Updates: my $algbrea = AtteanX::Parser::SPARQL->parse_update($sparql); # or: my $parser = AtteanX::Parser::SPARQL->new(update => 1); my ($algebra) = $parser->parse_list_from_bytes($sparql);
This module implements a recursive-descent parser for SPARQL 1.1 using the AtteanX::Parser::SPARQLLex tokenizer. Successful parsing results in an object whose type is one of: Attean::Algebra::Query, Attean::Algebra::Update, or Attean::Algebra::Sequence.
This class consumes Attean::API::Parser, Attean::API::AtOnceParser, and Attean::API::AbbreviatingParser.
Please report any bugs or feature requests to through the GitHub web interface at <https://github.com/kasei/attean/issues>.
Gregory Todd Williams "<gwilliams@cpan.org>"
Copyright (c) 2014--2022 Gregory Todd Williams. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2022-10-06 | perl v5.34.0 |