| Safe Haskell | Safe-Infered |
|---|
Text.RDF.RDF4H.TurtleParser
Description
An RdfParser implementation for the Turtle format
http://www.w3.org/TeamSubmission/turtle/.
- data TurtleParser = TurtleParser (Maybe BaseUrl) (Maybe ByteString)
Documentation
data TurtleParser Source
An RdfParser implementation for parsing RDF in the
Turtle format. It takes optional arguments representing the base URL to use
for resolving relative URLs in the document (may be overridden in the document
itself using the @base directive), and the URL to use for the document itself
for resolving references to in the document.
To use this parser, pass a TurtleParser value as the first argument to any of
the parseString, parseFile, or parseURL methods of the RdfParser type
class.
Constructors
| TurtleParser (Maybe BaseUrl) (Maybe ByteString) |
Instances
| RdfParser TurtleParser |
|