You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue tracks the implementation of N-Triples parsing and serialization capabilities within the rdf_dart package. N-Triples is a simple, line-based format for encoding RDF graphs, and its implementation will enable the rdf_dart package to interoperate with other RDF tools and systems that support this format.
Goal
The goal of this issue is to implement:
An N-Triples parser that can read a stream of N-Triples and produce a corresponding set of Triple objects.
An N-Triples serializer that can write a collection of Triple objects to a stream in N-Triples format.
Description
This issue tracks the implementation of N-Triples parsing and serialization capabilities within the
rdf_dart
package. N-Triples is a simple, line-based format for encoding RDF graphs, and its implementation will enable therdf_dart
package to interoperate with other RDF tools and systems that support this format.Goal
The goal of this issue is to implement:
Triple
objects.Triple
objects to a stream in N-Triples format.Implementation Notes
dart:convert
package for encoding and decoding interfaces.IRI
class for representing IRIs.NTriplesParseException
).The text was updated successfully, but these errors were encountered: