package rdf

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Rdf.Ttl_typesSource

Sourcemodule SMap = Xml.SMap
Sourcetype context = {
  1. base : Iri.t;
  2. prefixes : Iri.t SMap.t;
  3. gstate : Xml.global_state;
}
Sourcetype iriref = string
Sourcetype directive =
  1. | Prefix of string * iriref
  2. | Base of iriref
Sourcetype qname = string option * string option
Sourcetype iri =
  1. | Iriref of iriref
  2. | Qname of qname
Sourcetype language = string
Sourcetype literal =
  1. | String of string * language option * iri option
Sourcetype object_ =
  1. | Obj_iri of iri
  2. | Obj_blank of blank
  3. | Obj_literal of literal
Sourceand blank =
  1. | NodeId of string
  2. | Empty
  3. | PredObjs of predobj list
  4. | Collection of object_ list
Sourceand pred =
  1. | Pred_iri of iri
  2. | Pred_a
Sourceand predobj = pred * object_ list
Sourcetype subject =
  1. | Sub_iri of iri
  2. | Sub_blank of blank
Sourcetype statement =
  1. | Directive of directive
  2. | Triples of subject * predobj list
Sourcetype turtle = statement list
OCaml

Innovation. Community. Security.