RDF.ex v0.6.0 RDF.NQuads View Source

RDF.NQuads provides support for reading the N-Quads serialization format.

N-Quads is a line-based plain-text format for encoding an RDF dataset, i.e. a collection of RDF graphs.

An example of an RDF statement in N-Quads format:

<https://hex.pm/> <http://purl.org/dc/terms/title> "Hex" <http://example.org/graphs/example> .

see https://www.w3.org/TR/n-quads/

Link to this section Summary

Link to this section Functions

Link to this function

read_file(file, opts \\ []) View Source

Link to this function

read_file!(file, opts \\ []) View Source

Link to this function

read_string(content, opts \\ []) View Source

Link to this function

read_string!(content, opts \\ []) View Source

Link to this function

write_file(data, path, opts \\ []) View Source

Link to this function

write_file!(data, path, opts \\ []) View Source

Link to this function

write_string(data, opts \\ []) View Source

Link to this function

write_string!(data, opts \\ []) View Source