| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
Text.RDF.RDF4H.NTriplesParser
Description
A parser for RDF in N-Triples format http://www.w3.org/TR/rdf-testcases/#ntriples.
- data NTriplesParser = NTriplesParser
- data NTriplesParserCustom = NTriplesParserCustom Parser
- data ParseFailure
Documentation
data NTriplesParser Source #
NTriplesParser is an RdfParser implementation for parsing RDF in the
NTriples format. It requires no configuration options. To use this parser,
pass an NTriplesParser value as the first argument to any of the
parseString, parseFile, or parseURL methods of the RdfParser type
class.
Constructors
| NTriplesParser |
Instances
| RdfParser NTriplesParser Source # |
|
data NTriplesParserCustom Source #
Constructors
| NTriplesParserCustom Parser |
Instances
| RdfParser NTriplesParserCustom Source # |
|
data ParseFailure Source #
Represents a failure in parsing an N-Triples document, including an error message with information about the cause for the failure.
Instances