package rdf

  1. Overview
  2. Docs

Reading and writing Turtle.

type error =
  1. | Parse_error of Loc.loc * string
  2. | Unknown_namespace of string
exception Error of error
val string_of_error : error -> string
val from_string : Graph.graph -> ?base:Iri.t -> string -> unit

Input graph from string. Default base is the graph name.

val from_file : Graph.graph -> ?base:Iri.t -> string -> unit

Same as from_string but read from the given file.

val string_of_triple : sub:Term.term -> pred:Iri.t -> obj:Term.term -> string
val to_ : ?compact:bool -> ?namespaces:(Iri.t * string) list -> (string -> unit) -> Graph.graph -> unit
val to_string : ?compact:bool -> ?namespaces:(Iri.t * string) list -> Graph.graph -> string
val to_file : ?compact:bool -> ?namespaces:(Iri.t * string) list -> Graph.graph -> string -> unit