rdf-ex/docs/all.json
2017-06-26 00:37:29 +02:00

1 line
320 KiB
JSON

{"shell":true,"revision":"5087a4fb120901d8b4ae79448d529676ec3f0369","objects":[{"type":"impl","source":"lib/rdf/dataset.ex:686","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Enumerable.RDF.Dataset","id":"Enumerable.RDF.Dataset"},{"type":"impl","source":"lib/rdf/description.ex:531","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Enumerable.RDF.Description","id":"Enumerable.RDF.Description"},{"type":"impl","source":"lib/rdf/graph.ex:580","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Enumerable.RDF.Graph","id":"Enumerable.RDF.Graph"},{"type":"impl","source":"lib/rdf/inspect.ex:40","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Inspect.RDF.BlankNode","id":"Inspect.RDF.BlankNode"},{"type":"impl","source":"lib/rdf/inspect.ex:91","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Inspect.RDF.Dataset","id":"Inspect.RDF.Dataset"},{"type":"impl","source":"lib/rdf/inspect.ex:65","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Inspect.RDF.Description","id":"Inspect.RDF.Description"},{"type":"impl","source":"lib/rdf/inspect.ex:78","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Inspect.RDF.Graph","id":"Inspect.RDF.Graph"},{"type":"impl","source":"lib/rdf/inspect.ex:46","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.Inspect.RDF.Literal","id":"Inspect.RDF.Literal"},{"type":null,"source":"lib/rdf.ex:2","object_type":"ModuleObject","moduledoc":"The top-level module of RDF.ex.\n\nRDF.ex consists of:\n\n- modules for the nodes of an RDF graph\n - URIs are (currently) represented via Elixirs `URI` struct and should be\n constructed with `RDF.uri/1`\n - `RDF.BlankNode`\n - `RDF.Literal`\n- a facility for the mapping of URIs of a vocabulary to Elixir modules and\n functions: `RDF.Vocabulary.Namespace`\n- modules for the construction of statements\n - `RDF.Triple`\n - `RDF.Quad`\n - `RDF.Statement`\n- modules for collections of statements\n - `RDF.Description`\n - `RDF.Graph`\n - `RDF.Dataset`\n - `RDF.Data`\n- the foundations for the definition of RDF serialization formats\n - `RDF.Serialization`\n - `RDF.Serialization.Decoder`\n - `RDF.Serialization.Encoder`\n- and the implementation of two basic RDF serialization formats\n - `RDF.NTriples`\n - `RDF.NQuads`\n\nThis top-level module provides shortcut functions for the construction of the\nbasic elements and structures of RDF and some general helper functions.\n\nFor a general introduction you may refer to the [README](readme.html).\n","module":"Elixir.RDF","id":"RDF"},{"type":null,"source":"lib/rdf/blank_node.ex:2","object_type":"ModuleObject","moduledoc":"A RDF blank node is a local node of a graph without an URI.\n\nsee <https://www.w3.org/TR/rdf11-primer/#section-blank-node>\nand <https://www.w3.org/TR/rdf11-concepts/#section-blank-nodes>\n","module":"Elixir.RDF.BlankNode","id":"RDF.BlankNode"},{"type":null,"source":"lib/rdf/datatypes/boolean.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for XSD boolean.\n","module":"Elixir.RDF.Boolean","id":"RDF.Boolean"},{"type":"protocol","source":"lib/rdf/data.ex:2","object_type":"ModuleObject","moduledoc":"An abstraction over the different data structures for collections of RDF statements.\n","module":"Elixir.RDF.Data","id":"RDF.Data"},{"type":"impl","source":"lib/rdf/data.ex:201","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Data.RDF.Dataset","id":"RDF.Data.RDF.Dataset"},{"type":"impl","source":"lib/rdf/data.ex:84","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Data.RDF.Description","id":"RDF.Data.RDF.Description"},{"type":"impl","source":"lib/rdf/data.ex:146","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Data.RDF.Graph","id":"RDF.Data.RDF.Graph"},{"type":null,"source":"lib/rdf/dataset.ex:2","object_type":"ModuleObject","moduledoc":"A set of `RDF.Graph`s.\n\nIt may have multiple named graphs and at most one unnamed (\"default\") graph.\n\n`RDF.Dataset` implements:\n\n- Elixirs `Access` behaviour\n- Elixirs `Enumerable` protocol\n- Elixirs `Inspect` protocol\n- the `RDF.Data` protocol\n\n","module":"Elixir.RDF.Dataset","id":"RDF.Dataset"},{"type":null,"source":"lib/rdf/datatype.ex:2","object_type":"ModuleObject","moduledoc":"A behaviour for natively supported literal datatypes.\n\nA `RDF.Datatype` implements the foundational functions for the lexical form,\nthe validation, conversion and canonicalization of typed `RDF.Literal`s.\n","module":"Elixir.RDF.Datatype","id":"RDF.Datatype"},{"type":null,"source":"lib/rdf/datatypes/date.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for XSD date.\n","module":"Elixir.RDF.Date","id":"RDF.Date"},{"type":null,"source":"lib/rdf/datatypes/date_time.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for XSD dateTime.\n","module":"Elixir.RDF.DateTime","id":"RDF.DateTime"},{"type":null,"source":"lib/rdf/description.ex:2","object_type":"ModuleObject","moduledoc":"A set of RDF triples about the same subject.\n\n`RDF.Description` implements:\n\n- Elixirs `Access` behaviour\n- Elixirs `Enumerable` protocol\n- Elixirs `Inspect` protocol\n- the `RDF.Data` protocol\n","module":"Elixir.RDF.Description","id":"RDF.Description"},{"type":null,"source":"lib/rdf/datatypes/double.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for XSD double.\n","module":"Elixir.RDF.Double","id":"RDF.Double"},{"type":null,"source":"lib/rdf/graph.ex:2","object_type":"ModuleObject","moduledoc":"A set of RDF triples with an optional name.\n\n`RDF.Graph` implements:\n\n- Elixirs `Access` behaviour\n- Elixirs `Enumerable` protocol\n- Elixirs `Inspect` protocol\n- the `RDF.Data` protocol\n\n","module":"Elixir.RDF.Graph","id":"RDF.Graph"},{"type":null,"source":"lib/rdf/datatypes/integer.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for XSD integer.\n","module":"Elixir.RDF.Integer","id":"RDF.Integer"},{"type":"exception","source":"lib/rdf/exceptions.ex:5","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.InvalidLiteralError","id":"RDF.InvalidLiteralError"},{"type":"exception","source":"lib/rdf/exceptions.ex:1","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.InvalidURIError","id":"RDF.InvalidURIError"},{"type":null,"source":"lib/rdf/datatypes/lang_string.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for RDF langString.\n","module":"Elixir.RDF.LangString","id":"RDF.LangString"},{"type":null,"source":"lib/rdf/literal.ex:2","object_type":"ModuleObject","moduledoc":"RDF literals are leaf nodes of a RDF graph containing raw data, like strings and numbers.\n","module":"Elixir.RDF.Literal","id":"RDF.Literal"},{"type":null,"source":"lib/rdf/serializations/nquads.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.NQuads` provides support for reading the N-Quads serialization\nformat.\n\nN-Quads is a line-based plain-text format for encoding an RDF dataset, i.e. a\ncollection of RDF graphs.\n\nAn example of an RDF statement in N-Quads format:\n\n <https://hex.pm/> <http://purl.org/dc/terms/title> \"Hex\" <http://example.org/graphs/example> .\n\nsee <https://www.w3.org/TR/n-quads/>\n","module":"Elixir.RDF.NQuads","id":"RDF.NQuads"},{"type":null,"source":"lib/rdf/ns.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Namespace`s for fundamental RDF vocabularies.\n\nNamely:\n\n- `RDF.NS.RDF`\n- `RDF.NS.RDFS`\n- `RDF.NS.OWL`\n- `RDF.NS.SKOS`\n- `RDF.NS.XSD`\n","module":"Elixir.RDF.NS","id":"RDF.NS"},{"type":null,"source":"lib/rdf/ns.ex:52","object_type":"ModuleObject","moduledoc":"The OWL vocabulary.\n\nSee <https://www.w3.org/TR/owl-overview/>\n","module":"Elixir.RDF.NS.OWL","id":"RDF.NS.OWL"},{"type":null,"source":"lib/rdf/ns.ex:30","object_type":"ModuleObject","moduledoc":"The RDF vocabulary.\n\nSee <https://www.w3.org/TR/rdf11-concepts/>\n","module":"Elixir.RDF.NS.RDF","id":"RDF.NS.RDF"},{"type":null,"source":"lib/rdf/ns.ex:43","object_type":"ModuleObject","moduledoc":"The RDFS vocabulary.\n\nSee <https://www.w3.org/TR/rdf-schema/>\n","module":"Elixir.RDF.NS.RDFS","id":"RDF.NS.RDFS"},{"type":null,"source":"lib/rdf/ns.ex:61","object_type":"ModuleObject","moduledoc":"The SKOS vocabulary.\n\nSee <http://www.w3.org/TR/skos-reference/>\n","module":"Elixir.RDF.NS.SKOS","id":"RDF.NS.SKOS"},{"type":null,"source":"lib/rdf/ns.ex:21","object_type":"ModuleObject","moduledoc":"The XML Schema datatypes vocabulary.\n\nSee <https://www.w3.org/TR/xmlschema11-2/>\n","module":"Elixir.RDF.NS.XSD","id":"RDF.NS.XSD"},{"type":null,"source":"lib/rdf/serializations/ntriples.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.NTriples` provides support for reading and writing the N-Triples\nserialization format.\n\nN-Triples is a line-based plain-text format for encoding an RDF graph.\nIt is a very restricted, explicit and well-defined subset of both\n[Turtle](http://www.w3.org/TeamSubmission/turtle/) and\n[Notation3](http://www.w3.org/TeamSubmission/n3/) (N3).\n\nAn example of an RDF statement in N-Triples format:\n\n <https://hex.pm/> <http://purl.org/dc/terms/title> \"Hex\" .\n\nsee <https://www.w3.org/TR/n-triples/>\n","module":"Elixir.RDF.NTriples","id":"RDF.NTriples"},{"type":null,"source":"lib/rdf/namespace.ex:2","object_type":"ModuleObject","moduledoc":"A behaviour for resolvers of module atoms to URIs.\n\nCurrently there's only one type of such namespaces: `RDF.Vocabulary.Namespace`,\nbut other types are thinkable and might be implemented in the future, eg.\nnamespaces for JSON-LD contexts.\n","module":"Elixir.RDF.Namespace","id":"RDF.Namespace"},{"type":"exception","source":"lib/rdf/exceptions.ex:42","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Namespace.InvalidAliasError","id":"RDF.Namespace.InvalidAliasError"},{"type":"exception","source":"lib/rdf/exceptions.ex:38","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Namespace.InvalidTermError","id":"RDF.Namespace.InvalidTermError"},{"type":"exception","source":"lib/rdf/exceptions.ex:34","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Namespace.InvalidVocabBaseURIError","id":"RDF.Namespace.InvalidVocabBaseURIError"},{"type":"exception","source":"lib/rdf/exceptions.ex:46","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Namespace.UndefinedTermError","id":"RDF.Namespace.UndefinedTermError"},{"type":null,"source":"lib/rdf/quad.ex:2","object_type":"ModuleObject","moduledoc":"Helper functions for RDF quads.\n\nA RDF Quad is represented as a plain Elixir tuple consisting of four valid\nRDF values for subject, predicate, object and a graph context.\n","module":"Elixir.RDF.Quad","id":"RDF.Quad"},{"type":"exception","source":"lib/rdf/exceptions.ex:25","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Quad.InvalidGraphContextError","id":"RDF.Quad.InvalidGraphContextError"},{"type":null,"source":"lib/rdf/reader.ex:2","object_type":"ModuleObject","moduledoc":"General serialization-independent functions for reading a `RDF.Graph` or `RDF.Dataset` from a file or encoded-string.\n\nYou probably won't use these functions directly, but instead use the automatically\ngenerated functions with same name on a `RDF.Serialization`, which implicitly\nuse the proper `RDF.Serialization.Decoder` module.\n","module":"Elixir.RDF.Reader","id":"RDF.Reader"},{"type":null,"source":"lib/rdf/serialization.ex:2","object_type":"ModuleObject","moduledoc":"A behaviour for RDF serialization formats.\n\nA `RDF.Serialization` for a format can be implemented like this\n\n defmodule SomeFormat do\n use RDF.Serialization\n import RDF.Sigils\n\n @id ~I<http://example.com/some_format>\n @extension \"ext\"\n @content_type \"application/some-format\"\n end\n\nWhen `@id`, `@extension` and `@content_type` module attributes are defined the\nresp. behaviour functions are generated automatically and return these values.\n\nThen you'll have to do the main work by implementing a\n`RDF.Serialization.Encoder` and a `RDF.Serialization.Decoder` for the format.\n\nBy default it is assumed that these are defined in `Encoder` and `Decoder`\nmoduler under the `RDF.Serialization` module of the format, i.e. in the example\nabove in `SomeFormat.Encoder` and `SomeFormat.Decoder`. If you want them in\nanother module, you'll have to override the `encoder/0` and/or `decoder/0`\nfunctions in your `RDF.Serialization` module.\n","module":"Elixir.RDF.Serialization","id":"RDF.Serialization"},{"type":null,"source":"lib/rdf/serialization/decoder.ex:2","object_type":"ModuleObject","moduledoc":"A behaviour for decoder of strings encoded in a specific `RDF.Serialization` format.\n","module":"Elixir.RDF.Serialization.Decoder","id":"RDF.Serialization.Decoder"},{"type":null,"source":"lib/rdf/serialization/encoder.ex:2","object_type":"ModuleObject","moduledoc":"A behaviour for encoders of `RDF.Graph`s or `RDF.Dataset`s in a specific\n`RDF.Serialization` format.\n","module":"Elixir.RDF.Serialization.Encoder","id":"RDF.Serialization.Encoder"},{"type":null,"source":"lib/rdf/sigils.ex:2","object_type":"ModuleObject","moduledoc":"Sigils for the most common types of RDF nodes.\n","module":"Elixir.RDF.Sigils","id":"RDF.Sigils"},{"type":null,"source":"lib/rdf/statement.ex:2","object_type":"ModuleObject","moduledoc":"Helper functions for RDF statements.\n\nA RDF statement is either a `RDF.Triple` or a `RDF.Quad`.\n","module":"Elixir.RDF.Statement","id":"RDF.Statement"},{"type":null,"source":"lib/rdf/datatypes/string.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for XSD string.\n","module":"Elixir.RDF.String","id":"RDF.String"},{"type":null,"source":"lib/rdf/datatypes/time.ex:2","object_type":"ModuleObject","moduledoc":"`RDF.Datatype` for XSD time.\n","module":"Elixir.RDF.Time","id":"RDF.Time"},{"type":null,"source":"lib/rdf/triple.ex:2","object_type":"ModuleObject","moduledoc":"Helper functions for RDF triples.\n\nA RDF Triple is represented as a plain Elixir tuple consisting of three valid\nRDF values for subject, predicate and object.\n","module":"Elixir.RDF.Triple","id":"RDF.Triple"},{"type":"exception","source":"lib/rdf/exceptions.ex:17","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Triple.InvalidPredicateError","id":"RDF.Triple.InvalidPredicateError"},{"type":"exception","source":"lib/rdf/exceptions.ex:9","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.RDF.Triple.InvalidSubjectError","id":"RDF.Triple.InvalidSubjectError"},{"type":null,"source":"lib/rdf/vocabulary_namespace.ex:2","object_type":"ModuleObject","moduledoc":"A RDF vocabulary as a `RDF.Namespace`.\n\n`RDF.Vocabulary.Namespace` modules represent a RDF vocabulary as a `RDF.Namespace`.\nThey can be defined with the `defvocab/2` macro of this module.\n\nRDF.ex comes with predefined modules for some fundamental vocabularies in\nthe `RDF.NS` module.\nFurthermore, the [rdf_vocab](https://hex.pm/packages/rdf_vocab) package\ncontains predefined modules for popular vocabularies.\n","module":"Elixir.RDF.Vocabulary.Namespace","id":"RDF.Vocabulary.Namespace"},{"type":null,"source":"lib/rdf/writer.ex:2","object_type":"ModuleObject","moduledoc":"General serialization-independent functions for writing the statements of a `RDF.Graph` or `RDF.Dataset` to a file or string.\n\nYou probably won't use these functions directly, but instead use the automatically\ngenerated functions with same name on a `RDF.Serialization`, which implicitly\nuse the proper `RDF.Serialization.Encoder` module.\n","module":"Elixir.RDF.Writer","id":"RDF.Writer"},{"type":"impl","source":"lib/rdf/blank_node.ex:39","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.String.Chars.RDF.BlankNode","id":"String.Chars.RDF.BlankNode"},{"type":"impl","source":"lib/rdf/literal.ex:181","object_type":"ModuleObject","moduledoc":null,"module":"Elixir.String.Chars.RDF.Literal","id":"String.Chars.RDF.Literal"},{"type":"def","source":"lib/rdf/dataset.ex:686","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Enumerable.RDF.Dataset","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/dataset.ex:688","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"count","module_id":"Enumerable.RDF.Dataset","id":"count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/dataset.ex:687","signature":[["graph",[],null],["statement",[],null]],"object_type":"FunctionObject","name":"member?","module_id":"Enumerable.RDF.Dataset","id":"member?/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/dataset.ex:690","signature":[["dataset",[],null],["arg",[],"Elixir"],["fun",[],null]],"object_type":"FunctionObject","name":"reduce","module_id":"Enumerable.RDF.Dataset","id":"reduce/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/description.ex:531","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Enumerable.RDF.Description","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/description.ex:533","signature":[["desc",[],null]],"object_type":"FunctionObject","name":"count","module_id":"Enumerable.RDF.Description","id":"count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/description.ex:532","signature":[["desc",[],null],["triple",[],null]],"object_type":"FunctionObject","name":"member?","module_id":"Enumerable.RDF.Description","id":"member?/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/description.ex:535","signature":[["arg1",[],"Elixir"],["arg",[],"Elixir"],["fun",[],null]],"object_type":"FunctionObject","name":"reduce","module_id":"Enumerable.RDF.Description","id":"reduce/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/graph.ex:580","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Enumerable.RDF.Graph","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/graph.ex:582","signature":[["desc",[],null]],"object_type":"FunctionObject","name":"count","module_id":"Enumerable.RDF.Graph","id":"count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/graph.ex:581","signature":[["desc",[],null],["triple",[],null]],"object_type":"FunctionObject","name":"member?","module_id":"Enumerable.RDF.Graph","id":"member?/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/graph.ex:584","signature":[["graph",[],null],["arg",[],"Elixir"],["fun",[],null]],"object_type":"FunctionObject","name":"reduce","module_id":"Enumerable.RDF.Graph","id":"reduce/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/inspect.ex:40","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Inspect.RDF.BlankNode","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/inspect.ex:41","signature":[["blank_node",[],"Elixir"],["opts",[],"Elixir"]],"object_type":"FunctionObject","name":"inspect","module_id":"Inspect.RDF.BlankNode","id":"inspect/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/inspect.ex:91","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Inspect.RDF.Dataset","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/inspect.ex:95","signature":[["dataset",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"inspect","module_id":"Inspect.RDF.Dataset","id":"inspect/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/inspect.ex:65","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Inspect.RDF.Description","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/inspect.ex:69","signature":[["description",[],"Elixir"],["opts",[],null]],"object_type":"FunctionObject","name":"inspect","module_id":"Inspect.RDF.Description","id":"inspect/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/inspect.ex:78","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Inspect.RDF.Graph","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/inspect.ex:82","signature":[["graph",[],"Elixir"],["opts",[],null]],"object_type":"FunctionObject","name":"inspect","module_id":"Inspect.RDF.Graph","id":"inspect/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/inspect.ex:46","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"Inspect.RDF.Literal","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/inspect.ex:47","signature":[["literal",[],"Elixir"],["opts",[],"Elixir"]],"object_type":"FunctionObject","name":"inspect","module_id":"Inspect.RDF.Literal","id":"inspect/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf.ex:116","signature":[],"object_type":"FunctionObject","name":"bnode","module_id":"RDF","id":"bnode/0","doc":"See `RDF.BlankNode.new/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:117","signature":[["id",[],null]],"object_type":"FunctionObject","name":"bnode","module_id":"RDF","id":"bnode/1","doc":"See `RDF.BlankNode.new/1`.","arity":1},{"type":"def","source":"lib/rdf.ex:138","signature":[],"object_type":"FunctionObject","name":"dataset","module_id":"RDF","id":"dataset/0","doc":"See `RDF.Dataset.new/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:139","signature":[["arg",[],null]],"object_type":"FunctionObject","name":"dataset","module_id":"RDF","id":"dataset/1","doc":"See `RDF.Dataset.new/1`.","arity":1},{"type":"def","source":"lib/rdf.ex:140","signature":[["arg1",[],null],["arg2",[],null]],"object_type":"FunctionObject","name":"dataset","module_id":"RDF","id":"dataset/2","doc":"See `RDF.Dataset.new/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:128","signature":[["arg",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF","id":"description/1","doc":"See `RDF.Description.new/1`.","arity":1},{"type":"def","source":"lib/rdf.ex:129","signature":[["arg1",[],null],["arg2",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF","id":"description/2","doc":"See `RDF.Description.new/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:130","signature":[["arg1",[],null],["arg2",[],null],["arg3",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF","id":"description/3","doc":"See `RDF.Description.new/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:144","signature":[],"object_type":"FunctionObject","name":"first","module_id":"RDF","id":"first/0","doc":"See `RDF.NS.RDF.first/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:145","signature":[["s",[],null],["o",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF","id":"first/2","doc":"See `RDF.NS.RDF.first/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:146","signature":[["s",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF","id":"first/3","doc":"See `RDF.NS.RDF.first/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:147","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF","id":"first/4","doc":"See `RDF.NS.RDF.first/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:148","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF","id":"first/5","doc":"See `RDF.NS.RDF.first/5`.","arity":5},{"type":"def","source":"lib/rdf.ex:149","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF","id":"first/6","doc":"See `RDF.NS.RDF.first/6`.","arity":6},{"type":"def","source":"lib/rdf.ex:132","signature":[],"object_type":"FunctionObject","name":"graph","module_id":"RDF","id":"graph/0","doc":"See `RDF.Graph.new/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:133","signature":[["arg",[],null]],"object_type":"FunctionObject","name":"graph","module_id":"RDF","id":"graph/1","doc":"See `RDF.Graph.new/1`.","arity":1},{"type":"def","source":"lib/rdf.ex:134","signature":[["arg1",[],null],["arg2",[],null]],"object_type":"FunctionObject","name":"graph","module_id":"RDF","id":"graph/2","doc":"See `RDF.Graph.new/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:135","signature":[["arg1",[],null],["arg2",[],null],["arg3",[],null]],"object_type":"FunctionObject","name":"graph","module_id":"RDF","id":"graph/3","doc":"See `RDF.Graph.new/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:136","signature":[["arg1",[],null],["arg2",[],null],["arg3",[],null],["arg4",[],null]],"object_type":"FunctionObject","name":"graph","module_id":"RDF","id":"graph/4","doc":"See `RDF.Graph.new/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:152","signature":[],"object_type":"FunctionObject","name":"langString","module_id":"RDF","id":"langString/0","doc":"See `RDF.NS.RDF.langString/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:119","signature":[["value",[],null]],"object_type":"FunctionObject","name":"literal","module_id":"RDF","id":"literal/1","doc":"See `RDF.Literal.new/1`.","arity":1},{"type":"def","source":"lib/rdf.ex:120","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"literal","module_id":"RDF","id":"literal/2","doc":"See `RDF.Literal.new/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:153","signature":[],"object_type":"FunctionObject","name":null,"module_id":"RDF","id":"/0","doc":"See `RDF.NS.RDF./0`.","arity":0},{"type":"def","source":"lib/rdf.ex:144","signature":[],"object_type":"FunctionObject","name":"object","module_id":"RDF","id":"object/0","doc":"See `RDF.NS.RDF.object/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:145","signature":[["s",[],null],["o",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF","id":"object/2","doc":"See `RDF.NS.RDF.object/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:146","signature":[["s",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF","id":"object/3","doc":"See `RDF.NS.RDF.object/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:147","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF","id":"object/4","doc":"See `RDF.NS.RDF.object/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:148","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF","id":"object/5","doc":"See `RDF.NS.RDF.object/5`.","arity":5},{"type":"def","source":"lib/rdf.ex:149","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF","id":"object/6","doc":"See `RDF.NS.RDF.object/6`.","arity":6},{"type":"def","source":"lib/rdf.ex:144","signature":[],"object_type":"FunctionObject","name":"predicate","module_id":"RDF","id":"predicate/0","doc":"See `RDF.NS.RDF.predicate/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:145","signature":[["s",[],null],["o",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF","id":"predicate/2","doc":"See `RDF.NS.RDF.predicate/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:146","signature":[["s",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF","id":"predicate/3","doc":"See `RDF.NS.RDF.predicate/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:147","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF","id":"predicate/4","doc":"See `RDF.NS.RDF.predicate/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:148","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF","id":"predicate/5","doc":"See `RDF.NS.RDF.predicate/5`.","arity":5},{"type":"def","source":"lib/rdf.ex:149","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF","id":"predicate/6","doc":"See `RDF.NS.RDF.predicate/6`.","arity":6},{"type":"def","source":"lib/rdf.ex:126","signature":[["tuple",[],null]],"object_type":"FunctionObject","name":"quad","module_id":"RDF","id":"quad/1","doc":"See `RDF.Quad.new/1`.","arity":1},{"type":"def","source":"lib/rdf.ex:125","signature":[["s",[],null],["p",[],null],["o",[],null],["g",[],null]],"object_type":"FunctionObject","name":"quad","module_id":"RDF","id":"quad/4","doc":"See `RDF.Quad.new/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:40","signature":[["value",[],null]],"object_type":"FunctionObject","name":"resource?","module_id":"RDF","id":"resource?/1","doc":"Checks if the given value is a RDF resource.\n\n## Examples\n\n iex> RDF.resource?(RDF.uri(\"http://example.com/resource\"))\n true\n iex> RDF.resource?(EX.resource)\n true\n iex> RDF.resource?(RDF.bnode)\n true\n iex> RDF.resource?(42)\n false\n","arity":1},{"type":"def","source":"lib/rdf.ex:144","signature":[],"object_type":"FunctionObject","name":"rest","module_id":"RDF","id":"rest/0","doc":"See `RDF.NS.RDF.rest/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:145","signature":[["s",[],null],["o",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF","id":"rest/2","doc":"See `RDF.NS.RDF.rest/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:146","signature":[["s",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF","id":"rest/3","doc":"See `RDF.NS.RDF.rest/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:147","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF","id":"rest/4","doc":"See `RDF.NS.RDF.rest/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:148","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF","id":"rest/5","doc":"See `RDF.NS.RDF.rest/5`.","arity":5},{"type":"def","source":"lib/rdf.ex:149","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF","id":"rest/6","doc":"See `RDF.NS.RDF.rest/6`.","arity":6},{"type":"def","source":"lib/rdf.ex:144","signature":[],"object_type":"FunctionObject","name":"subject","module_id":"RDF","id":"subject/0","doc":"See `RDF.NS.RDF.subject/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:145","signature":[["s",[],null],["o",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF","id":"subject/2","doc":"See `RDF.NS.RDF.subject/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:146","signature":[["s",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF","id":"subject/3","doc":"See `RDF.NS.RDF.subject/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:147","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF","id":"subject/4","doc":"See `RDF.NS.RDF.subject/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:148","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF","id":"subject/5","doc":"See `RDF.NS.RDF.subject/5`.","arity":5},{"type":"def","source":"lib/rdf.ex:149","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF","id":"subject/6","doc":"See `RDF.NS.RDF.subject/6`.","arity":6},{"type":"def","source":"lib/rdf.ex:123","signature":[["tuple",[],null]],"object_type":"FunctionObject","name":"triple","module_id":"RDF","id":"triple/1","doc":"See `RDF.Triple.new/1`.","arity":1},{"type":"def","source":"lib/rdf.ex:122","signature":[["s",[],null],["p",[],null],["o",[],null]],"object_type":"FunctionObject","name":"triple","module_id":"RDF","id":"triple/3","doc":"See `RDF.Triple.new/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:144","signature":[],"object_type":"FunctionObject","name":"type","module_id":"RDF","id":"type/0","doc":"See `RDF.NS.RDF.type/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:145","signature":[["s",[],null],["o",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF","id":"type/2","doc":"See `RDF.NS.RDF.type/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:146","signature":[["s",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF","id":"type/3","doc":"See `RDF.NS.RDF.type/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:147","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF","id":"type/4","doc":"See `RDF.NS.RDF.type/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:148","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF","id":"type/5","doc":"See `RDF.NS.RDF.type/5`.","arity":5},{"type":"def","source":"lib/rdf.ex:149","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF","id":"type/6","doc":"See `RDF.NS.RDF.type/6`.","arity":6},{"type":"def","source":"lib/rdf.ex:83","signature":[["atom",[],null]],"object_type":"FunctionObject","name":"uri","module_id":"RDF","id":"uri/1","doc":"Generator function for URIs from strings or term atoms of a `RDF.Namespace`.\n\nThis function is used for the `~I` sigil.\n\n## Examples\n\n iex> RDF.uri(\"http://www.example.com/foo\")\n %URI{authority: \"www.example.com\", fragment: nil, host: \"www.example.com\",\n path: \"/foo\", port: 80, query: nil, scheme: \"http\", userinfo: nil}\n\n iex> RDF.uri(RDF.NS.RDFS.Class)\n %URI{authority: \"www.w3.org\", fragment: \"Class\", host: \"www.w3.org\",\n path: \"/2000/01/rdf-schema\", port: 80, query: nil, scheme: \"http\",\n userinfo: nil}\n\n iex> RDF.uri(\"not a uri\")\n ** (RDF.InvalidURIError) string \"not a uri\" is not a valid URI\n","arity":1},{"type":"def","source":"lib/rdf.ex:61","signature":[["value",[],null]],"object_type":"FunctionObject","name":"uri?","module_id":"RDF","id":"uri?/1","doc":"Checks if the given value is an URI.\n\n## Examples\n\n iex> RDF.uri?(\"http://www.example.com/foo\")\n true\n iex> RDF.uri?(\"not a uri\")\n false\n","arity":1},{"type":"def","source":"lib/rdf.ex:144","signature":[],"object_type":"FunctionObject","name":"value","module_id":"RDF","id":"value/0","doc":"See `RDF.NS.RDF.value/0`.","arity":0},{"type":"def","source":"lib/rdf.ex:145","signature":[["s",[],null],["o",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF","id":"value/2","doc":"See `RDF.NS.RDF.value/2`.","arity":2},{"type":"def","source":"lib/rdf.ex:146","signature":[["s",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF","id":"value/3","doc":"See `RDF.NS.RDF.value/3`.","arity":3},{"type":"def","source":"lib/rdf.ex:147","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF","id":"value/4","doc":"See `RDF.NS.RDF.value/4`.","arity":4},{"type":"def","source":"lib/rdf.ex:148","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF","id":"value/5","doc":"See `RDF.NS.RDF.value/5`.","arity":5},{"type":"def","source":"lib/rdf.ex:149","signature":[["s",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF","id":"value/6","doc":"See `RDF.NS.RDF.value/6`.","arity":6},{"type":"def","source":"lib/rdf/blank_node.ex:13","signature":[],"object_type":"FunctionObject","name":"new","module_id":"RDF.BlankNode","id":"new/0","doc":"Generator function for `RDF.BlankNode`s.\n","arity":0},{"type":"def","source":"lib/rdf/blank_node.ex:19","signature":[["id",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.BlankNode","id":"new/1","doc":"Generator function for `RDF.BlankNode`s with a user-defined identity.\n\n## Examples\n\n iex> RDF.bnode(:foo)\n %RDF.BlankNode{id: \"foo\"}\n","arity":1},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.Boolean","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.Boolean","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.Boolean","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.Boolean","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.Boolean","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.Boolean","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.Boolean","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.Boolean","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.Boolean","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Boolean","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.Boolean","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/boolean.ex:6","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.Boolean","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:1","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__protocol__","module_id":"RDF.Data","id":"__protocol__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/data.ex:19","signature":[["data",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Data","id":"delete/2","doc":"Deletes statements from a RDF data structure.\n\nAs opposed to the `delete` functions on RDF data structures directly, this\nfunction only deletes exactly matching structures.\n\nTODO: rename this function to make the different semantics explicit\n","arity":2},{"type":"def","source":"lib/rdf/data.ex:44","signature":[["data",[],null],["subject",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF.Data","id":"description/2","doc":"Returns a `RDF.Description` of the given subject.\n\nNote: On a `RDF.Dataset` this will return an aggregated `RDF.Description` with\nthe statements about this subject from all graphs.\n","arity":2},{"type":"def","source":"lib/rdf/data.ex:1","signature":[["data",[],null]],"object_type":"FunctionObject","name":"impl_for","module_id":"RDF.Data","id":"impl_for/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/data.ex:1","signature":[["data",[],null]],"object_type":"FunctionObject","name":"impl_for!","module_id":"RDF.Data","id":"impl_for!/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/data.ex:34","signature":[["data",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"include?","module_id":"RDF.Data","id":"include?/2","doc":"Checks if the given statement exists within a RDF data structure.\n","arity":2},{"type":"def","source":"lib/rdf/data.ex:6","signature":[["data",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"merge","module_id":"RDF.Data","id":"merge/2","doc":"Adds statements to a RDF data structure.\n\nAs opposed to the specific `add` functions on the RDF data structures, which\nalways return the same structure type than the first argument, `merge` might\nresult in another RDF data structure, eg. merging two `RDF.Description` with\ndifferent subjects results in a `RDF.Graph` or adding a quad to a `RDF.Graph`\nwith a different name than the graph context of the quad results in a\n`RDF.Dataset`. But it is always guaranteed that the resulting structure has\na `RDF.Data` implementation.\n","arity":2},{"type":"def","source":"lib/rdf/data.ex:62","signature":[["data",[],null]],"object_type":"FunctionObject","name":"objects","module_id":"RDF.Data","id":"objects/1","doc":"Returns the set of all resources used in the objects within the statements of a RDF data structure.\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:29","signature":[["data",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Data","id":"pop/1","doc":"Deletes one statement from a RDF data structure and returns a tuple with deleted statement and the changed data structure.\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:57","signature":[["data",[],null]],"object_type":"FunctionObject","name":"predicates","module_id":"RDF.Data","id":"predicates/1","doc":"Returns the set of all properties used within the statements of RDF data structure.\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:67","signature":[["data",[],null]],"object_type":"FunctionObject","name":"resources","module_id":"RDF.Data","id":"resources/1","doc":"Returns the set of all resources used within the statements of a RDF data structure\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:77","signature":[["data",[],null]],"object_type":"FunctionObject","name":"statement_count","module_id":"RDF.Data","id":"statement_count/1","doc":"Returns the count of all statements of a RDF data structure.\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:39","signature":[["data",[],null]],"object_type":"FunctionObject","name":"statements","module_id":"RDF.Data","id":"statements/1","doc":"Returns the list of all statements of a RDF data structure.\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:72","signature":[["data",[],null]],"object_type":"FunctionObject","name":"subject_count","module_id":"RDF.Data","id":"subject_count/1","doc":"Returns the count of all resources which are subject of the statements of a RDF data structure.\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:52","signature":[["data",[],null]],"object_type":"FunctionObject","name":"subjects","module_id":"RDF.Data","id":"subjects/1","doc":"Returns the set of all resources which are subject of the statements of a RDF data structure.\n","arity":1},{"type":"def","source":"lib/rdf/data.ex:201","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"RDF.Data.RDF.Dataset","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/data.ex:214","signature":[["dataset",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Data.RDF.Dataset","id":"delete/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:224","signature":[["dataset",[],null],["subject",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF.Data.RDF.Dataset","id":"description/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:220","signature":[["dataset",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"include?","module_id":"RDF.Data.RDF.Dataset","id":"include?/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:202","signature":[["dataset",[],null],["triple",[],null]],"object_type":"FunctionObject","name":"merge","module_id":"RDF.Data.RDF.Dataset","id":"merge/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:237","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"objects","module_id":"RDF.Data.RDF.Dataset","id":"objects/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:218","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Data.RDF.Dataset","id":"pop/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:236","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"predicates","module_id":"RDF.Data.RDF.Dataset","id":"predicates/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:238","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"resources","module_id":"RDF.Data.RDF.Dataset","id":"resources/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:241","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"statement_count","module_id":"RDF.Data.RDF.Dataset","id":"statement_count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:222","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"statements","module_id":"RDF.Data.RDF.Dataset","id":"statements/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:240","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"subject_count","module_id":"RDF.Data.RDF.Dataset","id":"subject_count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:235","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"subjects","module_id":"RDF.Data.RDF.Dataset","id":"subjects/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:84","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"RDF.Data.RDF.Description","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/data.ex:113","signature":[["description",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Data.RDF.Description","id":"delete/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:126","signature":[["description",[],null],["s",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF.Data.RDF.Description","id":"description/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:121","signature":[["description",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"include?","module_id":"RDF.Data.RDF.Description","id":"include?/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:85","signature":[["description",[],null],["triple",[],null]],"object_type":"FunctionObject","name":"merge","module_id":"RDF.Data.RDF.Description","id":"merge/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:136","signature":[["description",[],null]],"object_type":"FunctionObject","name":"objects","module_id":"RDF.Data.RDF.Description","id":"objects/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:119","signature":[["description",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Data.RDF.Description","id":"pop/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:135","signature":[["description",[],null]],"object_type":"FunctionObject","name":"predicates","module_id":"RDF.Data.RDF.Description","id":"predicates/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:138","signature":[["description",[],null]],"object_type":"FunctionObject","name":"resources","module_id":"RDF.Data.RDF.Description","id":"resources/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:142","signature":[["description",[],null]],"object_type":"FunctionObject","name":"statement_count","module_id":"RDF.Data.RDF.Description","id":"statement_count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:124","signature":[["description",[],null]],"object_type":"FunctionObject","name":"statements","module_id":"RDF.Data.RDF.Description","id":"statements/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:141","signature":[["",[],"Elixir"]],"object_type":"FunctionObject","name":"subject_count","module_id":"RDF.Data.RDF.Description","id":"subject_count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:134","signature":[["description",[],"Elixir"]],"object_type":"FunctionObject","name":"subjects","module_id":"RDF.Data.RDF.Description","id":"subjects/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:146","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"RDF.Data.RDF.Graph","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/data.ex:178","signature":[["graph",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Data.RDF.Graph","id":"delete/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:188","signature":[["graph",[],null],["subject",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF.Data.RDF.Graph","id":"description/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:184","signature":[["graph",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"include?","module_id":"RDF.Data.RDF.Graph","id":"include?/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:147","signature":[["graph",[],null],["quad",[],null]],"object_type":"FunctionObject","name":"merge","module_id":"RDF.Data.RDF.Graph","id":"merge/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/data.ex:193","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"objects","module_id":"RDF.Data.RDF.Graph","id":"objects/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:182","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Data.RDF.Graph","id":"pop/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:192","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"predicates","module_id":"RDF.Data.RDF.Graph","id":"predicates/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:194","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"resources","module_id":"RDF.Data.RDF.Graph","id":"resources/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:197","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"statement_count","module_id":"RDF.Data.RDF.Graph","id":"statement_count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:186","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"statements","module_id":"RDF.Data.RDF.Graph","id":"statements/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:196","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"subject_count","module_id":"RDF.Data.RDF.Graph","id":"subject_count/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/data.ex:191","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"subjects","module_id":"RDF.Data.RDF.Graph","id":"subjects/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/dataset.ex:99","signature":[["dataset",[],null],["statements",[],null],["\\\\",[],[["graph_context",[],null],false]]],"object_type":"FunctionObject","name":"add","module_id":"RDF.Dataset","id":"add/3","doc":"Adds triples and quads to a `RDF.Dataset`.\n\nThe optional third `graph_context` argument allows to set a different\ndestination graph to which the statements are added, ignoring the graph context\nof given quads or the name of given graphs.\n","arity":3},{"type":"def","source":"lib/rdf/dataset.ex:441","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"default_graph","module_id":"RDF.Dataset","id":"default_graph/1","doc":"The default graph of a `RDF.Dataset`.\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:295","signature":[["dataset",[],null],["statements",[],null],["\\\\",[],[["graph_context",[],null],false]]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Dataset","id":"delete/3","doc":"Deletes statements from a `RDF.Dataset`.\n\nThe optional third `graph_context` argument allows to set a different\ndestination graph from which the statements are deleted, ignoring the graph\ncontext of given quads or the name of given graphs.\n\nNote: When the statements to be deleted are given as another `RDF.Dataset`,\nthe dataset name must not match dataset name of the dataset from which the statements\nare deleted. If you want to delete only datasets with matching names, you can\nuse `RDF.Data.delete/2`.\n","arity":3},{"type":"def","source":"lib/rdf/dataset.ex:384","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"delete_default_graph","module_id":"RDF.Dataset","id":"delete_default_graph/1","doc":"Deletes the default graph.\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:367","signature":[["graph",[],null],["graph_names",[],null]],"object_type":"FunctionObject","name":"delete_graph","module_id":"RDF.Dataset","id":"delete_graph/2","doc":"Deletes the given graph.\n","arity":2},{"type":"def","source":"lib/rdf/dataset.ex:391","signature":[["dataset",[],"Elixir"],["graph_name",[],null]],"object_type":"FunctionObject","name":"fetch","module_id":"RDF.Dataset","id":"fetch/2","doc":"Fetches the `RDF.Graph` with the given name.\n\nWhen a graph with the given name can not be found can not be found `:error` is returned.\n\n## Examples\n\n iex> dataset = RDF.Dataset.new([{EX.S1, EX.P1, EX.O1, EX.Graph}, {EX.S2, EX.P2, EX.O2}])\n ...> RDF.Dataset.fetch(dataset, EX.Graph)\n {:ok, RDF.Graph.new(EX.Graph, {EX.S1, EX.P1, EX.O1})}\n iex> RDF.Dataset.fetch(dataset, nil)\n {:ok, RDF.Graph.new({EX.S2, EX.P2, EX.O2})}\n iex> RDF.Dataset.fetch(dataset, EX.Foo)\n :error\n","arity":2},{"type":"def","source":"lib/rdf/dataset.ex:410","signature":[["dataset",[],null],["graph_name",[],null],["\\\\",[],[["default",[],null],null]]],"object_type":"FunctionObject","name":"get","module_id":"RDF.Dataset","id":"get/3","doc":"Fetches the `RDF.Graph` with the given name.\n\nWhen a graph with the given name can not be found can not be found the optionally\ngiven default value or `nil` is returned\n\n## Examples\n\n iex> dataset = RDF.Dataset.new([{EX.S1, EX.P1, EX.O1, EX.Graph}, {EX.S2, EX.P2, EX.O2}])\n ...> RDF.Dataset.get(dataset, EX.Graph)\n RDF.Graph.new(EX.Graph, {EX.S1, EX.P1, EX.O1})\n iex> RDF.Dataset.get(dataset, nil)\n RDF.Graph.new({EX.S2, EX.P2, EX.O2})\n iex> RDF.Dataset.get(dataset, EX.Foo)\n nil\n iex> RDF.Dataset.get(dataset, EX.Foo, :bar)\n :bar\n","arity":3},{"type":"def","source":"lib/rdf/dataset.ex:454","signature":[["dataset",[],null],["graph_name",[],null],["fun",[],null]],"object_type":"FunctionObject","name":"get_and_update","module_id":"RDF.Dataset","id":"get_and_update/3","doc":"Gets and updates the graph with the given name, in a single pass.\n\nInvokes the passed function on the `RDF.Graph` with the given name;\nthis function should return either `{graph_to_return, new_graph}` or `:pop`.\n\nIf the passed function returns `{graph_to_return, new_graph}`, the\nreturn value of `get_and_update` is `{graph_to_return, new_dataset}` where\n`new_dataset` is the input `Dataset` updated with `new_graph` for\nthe given name.\n\nIf the passed function returns `:pop` the graph with the given name is\nremoved and a `{removed_graph, new_dataset}` tuple gets returned.\n\n## Examples\n\n iex> dataset = RDF.Dataset.new({EX.S, EX.P, EX.O, EX.Graph})\n ...> RDF.Dataset.get_and_update(dataset, EX.Graph, fn current_graph ->\n ...> {current_graph, {EX.S, EX.P, EX.NEW}}\n ...> end)\n {RDF.Graph.new(EX.Graph, {EX.S, EX.P, EX.O}), RDF.Dataset.new({EX.S, EX.P, EX.NEW, EX.Graph})}\n","arity":3},{"type":"def","source":"lib/rdf/dataset.ex:435","signature":[["dataset",[],"Elixir"],["graph_name",[],null]],"object_type":"FunctionObject","name":"graph","module_id":"RDF.Dataset","id":"graph/2","doc":"The graph with given name.\n","arity":2},{"type":"def","source":"lib/rdf/dataset.ex:448","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"graphs","module_id":"RDF.Dataset","id":"graphs/1","doc":"The set of all graphs.\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:658","signature":[["dataset",[],null],["statement",[],null],["\\\\",[],[["graph_context",[],null],null]]],"object_type":"FunctionObject","name":"include?","module_id":"RDF.Dataset","id":"include?/3","doc":"Returns if a given statement is in a `RDF.Dataset`.\n\n## Examples\n\n iex> dataset = RDF.Dataset.new([\n ...> {EX.S1, EX.p1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}])\n ...> RDF.Dataset.include?(dataset, {EX.S1, EX.p1, EX.O1, EX.Graph})\n true\n","arity":3},{"type":"def","source":"lib/rdf/dataset.ex:26","signature":[],"object_type":"FunctionObject","name":"new","module_id":"RDF.Dataset","id":"new/0","doc":"Creates an empty unnamed `RDF.Dataset`.\n","arity":0},{"type":"def","source":"lib/rdf/dataset.ex:32","signature":[["statement",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Dataset","id":"new/1","doc":"Creates an empty named `RDF.Dataset`.\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:68","signature":[["name",[],null],["statement",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Dataset","id":"new/2","doc":"Creates a named `RDF.Dataset` from another `RDF.Dataset`.\n","arity":2},{"type":"def","source":"lib/rdf/dataset.ex:590","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"objects","module_id":"RDF.Dataset","id":"objects/1","doc":"The set of all resources used in the objects within a `RDF.Dataset`.\n\nNote: This function does collect only URIs and BlankNodes, not Literals.\n\n## Examples\n\n iex> RDF.Dataset.new([\n ...> {EX.S1, EX.p1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.p2, EX.O2, EX.Graph},\n ...> {EX.S3, EX.p1, EX.O2},\n ...> {EX.S4, EX.p2, RDF.bnode(:bnode)},\n ...> {EX.S5, EX.p3, \"foo\"}\n ...> ]) |> RDF.Dataset.objects\n MapSet.new([RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode)])\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:490","signature":[["dataset",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Dataset","id":"pop/1","doc":"Pops an arbitrary statement from a `RDF.Dataset`.\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:509","signature":[["dataset",[],null],["graph_name",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Dataset","id":"pop/2","doc":"Pops the graph with the given name.\n\nWhen a graph with given name can not be found the optionally given default value\nor `nil` is returned.\n\n## Examples\n\n iex> dataset = RDF.Dataset.new([\n ...> {EX.S1, EX.P1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.P2, EX.O2}])\n ...> RDF.Dataset.pop(dataset, EX.Graph)\n {RDF.Graph.new(EX.Graph, {EX.S1, EX.P1, EX.O1}), RDF.Dataset.new({EX.S2, EX.P2, EX.O2})}\n iex> RDF.Dataset.pop(dataset, EX.Foo)\n {nil, dataset}\n","arity":2},{"type":"def","source":"lib/rdf/dataset.ex:572","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"predicates","module_id":"RDF.Dataset","id":"predicates/1","doc":"The set of all properties used in the predicates within all graphs of a `RDF.Dataset`.\n\n## Examples\n\n iex> RDF.Dataset.new([\n ...> {EX.S1, EX.p1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Dataset.predicates\n MapSet.new([EX.p1, EX.p2])\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:173","signature":[["dataset",[],null],["statements",[],null],["\\\\",[],[["graph_context",[],null],false]]],"object_type":"FunctionObject","name":"put","module_id":"RDF.Dataset","id":"put/3","doc":"Adds statements to a `RDF.Dataset` and overwrites all existing statements with the same subjects and predicates in the specified graph context.\n\n## Examples\n\n iex> dataset = RDF.Dataset.new({EX.S, EX.P1, EX.O1})\n ...> RDF.Dataset.put(dataset, {EX.S, EX.P1, EX.O2})\n RDF.Dataset.new({EX.S, EX.P1, EX.O2})\n iex> RDF.Dataset.put(dataset, {EX.S, EX.P2, EX.O2})\n RDF.Dataset.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O2}])\n iex> RDF.Dataset.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>\n ...> RDF.Dataset.put([{EX.S1, EX.P2, EX.O3}, {EX.S2, EX.P2, EX.O3}])\n RDF.Dataset.new([{EX.S1, EX.P1, EX.O1}, {EX.S1, EX.P2, EX.O3}, {EX.S2, EX.P2, EX.O3}])\n","arity":3},{"type":"def","source":"lib/rdf/dataset.ex:612","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"resources","module_id":"RDF.Dataset","id":"resources/1","doc":"The set of all resources used within a `RDF.Dataset`.\n\n## Examples\n\n iex> RDF.Dataset.new([\n ...> {EX.S1, EX.p1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.p1, EX.O2, EX.Graph},\n ...> {EX.S2, EX.p2, RDF.bnode(:bnode)},\n ...> {EX.S3, EX.p1, \"foo\"}\n ...> ]) |> RDF.Dataset.resources\n MapSet.new([RDF.uri(EX.S1), RDF.uri(EX.S2), RDF.uri(EX.S3),\n RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode), EX.p1, EX.p2])\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:536","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"statement_count","module_id":"RDF.Dataset","id":"statement_count/1","doc":"The number of statements within a `RDF.Dataset`.\n\n## Examples\n\n iex> RDF.Dataset.new([\n ...> {EX.S1, EX.p1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Dataset.statement_count\n 3\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:632","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"statements","module_id":"RDF.Dataset","id":"statements/1","doc":"All statements within all graphs of a `RDF.Dataset`.\n\n## Examples\n\n iex> RDF.Dataset.new([\n ...> {EX.S1, EX.p1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Dataset.statements\n [{RDF.uri(EX.S1), RDF.uri(EX.p1), RDF.uri(EX.O1), RDF.uri(EX.Graph)},\n {RDF.uri(EX.S1), RDF.uri(EX.p2), RDF.uri(EX.O3)},\n {RDF.uri(EX.S2), RDF.uri(EX.p2), RDF.uri(EX.O2)}]\n","arity":1},{"type":"def","source":"lib/rdf/dataset.ex:554","signature":[["dataset",[],"Elixir"]],"object_type":"FunctionObject","name":"subjects","module_id":"RDF.Dataset","id":"subjects/1","doc":"The set of all subjects used in the statement within all graphs of a `RDF.Dataset`.\n\n## Examples\n\n iex> RDF.Dataset.new([\n ...> {EX.S1, EX.p1, EX.O1, EX.Graph},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Dataset.subjects\n MapSet.new([RDF.uri(EX.S1), RDF.uri(EX.S2)])\n","arity":1},{"type":"def","source":"lib/rdf/datatype.ex:89","signature":[["id",[],null]],"object_type":"FunctionObject","name":"get","module_id":"RDF.Datatype","id":"get/1","doc":"Returns the `RDF.Datatype` for a directly datatype URI or the datatype URI of a `RDF.Literal`.\n","arity":1},{"type":"def","source":"lib/rdf/datatype.ex:79","signature":[],"object_type":"FunctionObject","name":"ids","module_id":"RDF.Datatype","id":"ids/0","doc":"The URIs of all datatypes with a `RDF.Datatype` defined.\n","arity":0},{"type":"def","source":"lib/rdf/datatype.ex:74","signature":[],"object_type":"FunctionObject","name":"mapping","module_id":"RDF.Datatype","id":"mapping/0","doc":"The mapping of URIs of datatypes to their `RDF.Datatype`.\n","arity":0},{"type":"def","source":"lib/rdf/datatype.ex:84","signature":[],"object_type":"FunctionObject","name":"modules","module_id":"RDF.Datatype","id":"modules/0","doc":"All defined `RDF.Datatype` modules.\n","arity":0},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.Date","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.Date","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.Date","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.Date","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.Date","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.Date","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.Date","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.Date","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.Date","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Date","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.Date","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date.ex:6","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.Date","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.DateTime","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.DateTime","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.DateTime","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.DateTime","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.DateTime","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.DateTime","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.DateTime","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.DateTime","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.DateTime","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.DateTime","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.DateTime","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/date_time.ex:6","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.DateTime","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/description.ex:89","signature":[["description",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"add","module_id":"RDF.Description","id":"add/2","doc":"Adds statements to a `RDF.Description`.\n\nNote: When the statements to be added are given as another `RDF.Description`,\nthe subject must not match subject of the description to which the statements\nare added. As opposed to that `RDF.Data.merge/2` will produce a `RDF.Graph`\ncontaining both descriptions.\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:59","signature":[["description",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"add","module_id":"RDF.Description","id":"add/3","doc":"Add objects to a predicate of a `RDF.Description`.\n\n## Examples\n\n iex> RDF.Description.add(RDF.Description.new({EX.S, EX.P1, EX.O1}), EX.P2, EX.O2)\n RDF.Description.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O2}])\n iex> RDF.Description.add(RDF.Description.new({EX.S, EX.P, EX.O1}), EX.P, [EX.O2, EX.O3])\n RDF.Description.new([{EX.S, EX.P, EX.O1}, {EX.S, EX.P, EX.O2}, {EX.S, EX.P, EX.O3}])\n","arity":3},{"type":"def","source":"lib/rdf/description.ex:498","signature":[["description",[],"Elixir"]],"object_type":"FunctionObject","name":"count","module_id":"RDF.Description","id":"count/1","doc":"Returns the number of statements of a `RDF.Description`.\n","arity":1},{"type":"def","source":"lib/rdf/description.ex:249","signature":[["description",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Description","id":"delete/2","doc":"Deletes statements from a `RDF.Description`.\n\nNote: When the statements to be deleted are given as another `RDF.Description`,\nthe subject must not match subject of the description from which the statements\nare deleted. If you want to delete only a matching description subject, you can\nuse `RDF.Data.delete/2`.\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:217","signature":[["description",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Description","id":"delete/3","doc":"Deletes statements from a `RDF.Description`.\n","arity":3},{"type":"def","source":"lib/rdf/description.ex:290","signature":[["description",[],null],["properties",[],null]],"object_type":"FunctionObject","name":"delete_predicates","module_id":"RDF.Description","id":"delete_predicates/2","doc":"Deletes all statements with the given properties.\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:308","signature":[["description",[],"Elixir"],["predicate",[],null]],"object_type":"FunctionObject","name":"fetch","module_id":"RDF.Description","id":"fetch/2","doc":"Fetches the objects for the given predicate of a Description.\n\nWhen the predicate can not be found `:error` is returned.\n\n## Examples\n\n iex> RDF.Description.fetch(RDF.Description.new({EX.S, EX.p, EX.O}), EX.p)\n {:ok, [RDF.uri(EX.O)]}\n iex> RDF.Description.fetch(RDF.Description.new([{EX.S, EX.P, EX.O1},\n ...> {EX.S, EX.P, EX.O2}]), EX.P)\n {:ok, [RDF.uri(EX.O1), RDF.uri(EX.O2)]}\n iex> RDF.Description.fetch(RDF.Description.new(EX.S), EX.foo)\n :error\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:329","signature":[["description",[],"Elixir"],["predicate",[],null],["\\\\",[],[["default",[],null],null]]],"object_type":"FunctionObject","name":"get","module_id":"RDF.Description","id":"get/3","doc":"Gets the objects for the given predicate of a Description.\n\nWhen the predicate can not be found the optionally given default value or `nil` is returned.\n\n## Examples\n\n iex> RDF.Description.get(RDF.Description.new({EX.S, EX.P, EX.O}), EX.P)\n [RDF.uri(EX.O)]\n iex> RDF.Description.get(RDF.Description.new(EX.S), EX.foo)\n nil\n iex> RDF.Description.get(RDF.Description.new(EX.S), EX.foo, :bar)\n :bar\n","arity":3},{"type":"def","source":"lib/rdf/description.ex:350","signature":[["description",[],"Elixir"],["predicate",[],null],["fun",[],null]],"object_type":"FunctionObject","name":"get_and_update","module_id":"RDF.Description","id":"get_and_update/3","doc":"Gets and updates the objects of the given predicate of a Description, in a single pass.\n\nInvokes the passed function on the objects of the given predicate; this\nfunction should return either `{objects_to_return, new_object}` or `:pop`.\n\nIf the passed function returns `{objects_to_return, new_objects}`, the return\nvalue of `get_and_update` is `{objects_to_return, new_description}` where\n`new_description` is the input `Description` updated with `new_objects` for\nthe given predicate.\n\nIf the passed function returns `:pop` the objects for the given predicate are\nremoved and a `{removed_objects, new_description}` tuple gets returned.\n\n## Examples\n\n iex> RDF.Description.new({EX.S, EX.P, EX.O}) |>\n ...> RDF.Description.get_and_update(EX.P, fn current_objects ->\n ...> {current_objects, EX.NEW}\n ...> end)\n {[RDF.uri(EX.O)], RDF.Description.new({EX.S, EX.P, EX.NEW})}\n iex> RDF.Description.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O2}]) |>\n ...> RDF.Description.get_and_update(EX.P1, fn _ -> :pop end)\n {[RDF.uri(EX.O1)], RDF.Description.new({EX.S, EX.P2, EX.O2})}\n","arity":3},{"type":"def","source":"lib/rdf/description.ex:507","signature":[["description",[],null],["statement",[],null]],"object_type":"FunctionObject","name":"include?","module_id":"RDF.Description","id":"include?/2","doc":"Checks if the given statement exists within a `RDF.Description`.\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:21","signature":[["subject",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Description","id":"new/1","doc":"Creates a new `RDF.Description` about the given subject with optional initial statements.\n\nWhen given a list of statements, the first one must contain a subject.\n","arity":1},{"type":"def","source":"lib/rdf/description.ex:38","signature":[["subject",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Description","id":"new/2","doc":"Creates a new `RDF.Description` about the given subject with optional initial statements.\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:50","signature":[["description",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Description","id":"new/3","doc":"Creates a new `RDF.Description` about the given subject with optional initial statements.\n","arity":3},{"type":"def","source":"lib/rdf/description.ex:444","signature":[["description",[],"Elixir"]],"object_type":"FunctionObject","name":"objects","module_id":"RDF.Description","id":"objects/1","doc":"The set of all resources used in the objects within a `RDF.Description`.\n\nNote: This function does collect only URIs and BlankNodes, not Literals.\n\n## Examples\n\n iex> RDF.Description.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.p2, EX.O2},\n ...> {EX.p3, EX.O2},\n ...> {EX.p4, RDF.bnode(:bnode)},\n ...> {EX.p3, \"foo\"}\n ...> ]) |> RDF.Description.objects\n MapSet.new([RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode)])\n","arity":1},{"type":"def","source":"lib/rdf/description.ex:386","signature":[["description",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Description","id":"pop/1","doc":"Pops an arbitrary triple from a `RDF.Description`.\n","arity":1},{"type":"def","source":"lib/rdf/description.ex:407","signature":[["description",[],"Elixir"],["predicate",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Description","id":"pop/2","doc":"Pops the objects of the given predicate of a Description.\n\nWhen the predicate can not be found the optionally given default value or `nil` is returned.\n\n## Examples\n\n iex> RDF.Description.pop(RDF.Description.new({EX.S, EX.P, EX.O}), EX.P)\n {[RDF.uri(EX.O)], RDF.Description.new(EX.S)}\n iex> RDF.Description.pop(RDF.Description.new({EX.S, EX.P, EX.O}), EX.Missing)\n {nil, RDF.Description.new({EX.S, EX.P, EX.O})}\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:429","signature":[["description",[],"Elixir"]],"object_type":"FunctionObject","name":"predicates","module_id":"RDF.Description","id":"predicates/1","doc":"The set of all properties used in the predicates within a `RDF.Description`.\n\n## Examples\n\n iex> RDF.Description.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.p2, EX.O2},\n ...> {EX.p2, EX.O3}]) |>\n ...> RDF.Description.predicates\n MapSet.new([EX.p1, EX.p2])\n","arity":1},{"type":"def","source":"lib/rdf/description.ex:155","signature":[["description",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"put","module_id":"RDF.Description","id":"put/2","doc":"Adds statements to a `RDF.Description` and overwrites all existing statements with already used predicates.\n\n## Examples\n\n iex> RDF.Description.put(RDF.Description.new({EX.S, EX.P, EX.O1}), {EX.P, EX.O2})\n RDF.Description.new([{EX.S, EX.P, EX.O2}])\n iex> RDF.Description.new({EX.S, EX.P1, EX.O1}) |>\n ...> RDF.Description.put([{EX.P2, EX.O2}, {EX.S, EX.P2, EX.O3}, {EX.P1, EX.O4}])\n RDF.Description.new([{EX.S, EX.P1, EX.O4}, {EX.S, EX.P2, EX.O2}, {EX.S, EX.P2, EX.O3}])\n iex> RDF.Description.new({EX.S, EX.P, EX.O1}) |>\n ...> RDF.Description.put(RDF.Description.new(EX.S, EX.P, [EX.O1, EX.O2]))\n RDF.Description.new([{EX.S, EX.P, EX.O1}, {EX.S, EX.P, EX.O2}])\n iex> RDF.Description.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O2}]) |>\n ...> RDF.Description.put(%{EX.P2 => [EX.O3, EX.O4]})\n RDF.Description.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O3}, {EX.S, EX.P2, EX.O4}])\n","arity":2},{"type":"def","source":"lib/rdf/description.ex:131","signature":[["description",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"put","module_id":"RDF.Description","id":"put/3","doc":"Puts objects to a predicate of a `RDF.Description`, overwriting all existing objects.\n\n## Examples\n\n iex> RDF.Description.put(RDF.Description.new({EX.S, EX.P, EX.O1}), EX.P, EX.O2)\n RDF.Description.new([{EX.S, EX.P, EX.O2}])\n iex> RDF.Description.put(RDF.Description.new({EX.S, EX.P1, EX.O1}), EX.P2, EX.O2)\n RDF.Description.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O2}])\n","arity":3},{"type":"def","source":"lib/rdf/description.ex:470","signature":[["description",[],null]],"object_type":"FunctionObject","name":"resources","module_id":"RDF.Description","id":"resources/1","doc":"The set of all resources used within a `RDF.Description`.\n\n## Examples\n\n iex> RDF.Description.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.p2, EX.O2},\n ...> {EX.p1, EX.O2},\n ...> {EX.p2, RDF.bnode(:bnode)},\n ...> {EX.p3, \"foo\"}\n ...> ]) |> RDF.Description.resources\n MapSet.new([RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode), EX.p1, EX.p2, EX.p3])\n","arity":1},{"type":"def","source":"lib/rdf/description.ex:495","signature":[["description",[],null]],"object_type":"FunctionObject","name":"statements","module_id":"RDF.Description","id":"statements/1","doc":"See `RDF.Description.triples/1`.","arity":1},{"type":"def","source":"lib/rdf/description.ex:490","signature":[["description",[],"Elixir"]],"object_type":"FunctionObject","name":"triples","module_id":"RDF.Description","id":"triples/1","doc":"The list of all triples within a `RDF.Description`.\n","arity":1},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.Double","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.Double","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.Double","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.Double","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.Double","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.Double","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/double.ex:64","signature":[["float",[],null]],"object_type":"FunctionObject","name":"decimal_form","module_id":"RDF.Double","id":"decimal_form/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/double.ex:68","signature":[["float",[],null]],"object_type":"FunctionObject","name":"exponential_form","module_id":"RDF.Double","id":"exponential_form/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.Double","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.Double","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.Double","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Double","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.Double","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/double.ex:6","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.Double","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/graph.ex:109","signature":[["graph",[],null],["triples",[],null]],"object_type":"FunctionObject","name":"add","module_id":"RDF.Graph","id":"add/2","doc":"Adds triples to a `RDF.Graph`.\n\nNote: When the statements to be added are given as another `RDF.Graph`,\nthe graph name must not match graph name of the graph to which the statements\nare added. As opposed to that `RDF.Data.merge/2` will produce a `RDF.Dataset`\ncontaining both graphs.\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:102","signature":[["graph",[],null],["subject",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"add","module_id":"RDF.Graph","id":"add/4","doc":"Adds triples to a `RDF.Graph`.\n","arity":4},{"type":"def","source":"lib/rdf/graph.ex:241","signature":[["graph",[],null],["triples",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Graph","id":"delete/2","doc":"Deletes statements from a `RDF.Graph`.\n\nNote: When the statements to be deleted are given as another `RDF.Graph`,\nthe graph name must not match graph name of the graph from which the statements\nare deleted. If you want to delete only graphs with matching names, you can\nuse `RDF.Data.delete/2`.\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:235","signature":[["graph",[],null],["subject",[],null],["predicate",[],null],["object",[],null]],"object_type":"FunctionObject","name":"delete","module_id":"RDF.Graph","id":"delete/4","doc":"Deletes statements from a `RDF.Graph`.\n","arity":4},{"type":"def","source":"lib/rdf/graph.ex:291","signature":[["graph",[],null],["subjects",[],null]],"object_type":"FunctionObject","name":"delete_subjects","module_id":"RDF.Graph","id":"delete_subjects/2","doc":"Deletes all statements with the given subjects.\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:348","signature":[["graph",[],"Elixir"],["subject",[],null]],"object_type":"FunctionObject","name":"description","module_id":"RDF.Graph","id":"description/2","doc":"The `RDF.Description` of the given subject.\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:309","signature":[["graph",[],"Elixir"],["subject",[],null]],"object_type":"FunctionObject","name":"fetch","module_id":"RDF.Graph","id":"fetch/2","doc":"Fetches the description of the given subject.\n\nWhen the subject can not be found `:error` is returned.\n\n## Examples\n\n iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>\n ...> RDF.Graph.fetch(EX.S1)\n {:ok, RDF.Description.new({EX.S1, EX.P1, EX.O1})}\n iex> RDF.Graph.fetch(RDF.Graph.new, EX.foo)\n :error\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:326","signature":[["graph",[],null],["subject",[],null],["\\\\",[],[["default",[],null],null]]],"object_type":"FunctionObject","name":"get","module_id":"RDF.Graph","id":"get/3","doc":"Gets the description of the given subject.\n\nWhen the subject can not be found the optionally given default value or `nil` is returned.\n\n## Examples\n\n iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>\n ...> RDF.Graph.get(EX.S1)\n RDF.Description.new({EX.S1, EX.P1, EX.O1})\n iex> RDF.Graph.get(RDF.Graph.new, EX.Foo)\n nil\n iex> RDF.Graph.get(RDF.Graph.new, EX.Foo, :bar)\n :bar\n","arity":3},{"type":"def","source":"lib/rdf/graph.ex:355","signature":[["graph",[],null],["subject",[],null],["fun",[],null]],"object_type":"FunctionObject","name":"get_and_update","module_id":"RDF.Graph","id":"get_and_update/3","doc":"Gets and updates the description of the given subject, in a single pass.\n\nInvokes the passed function on the `RDF.Description` of the given subject;\nthis function should return either `{description_to_return, new_description}` or `:pop`.\n\nIf the passed function returns `{description_to_return, new_description}`, the\nreturn value of `get_and_update` is `{description_to_return, new_graph}` where\n`new_graph` is the input `Graph` updated with `new_description` for\nthe given subject.\n\nIf the passed function returns `:pop` the description for the given subject is\nremoved and a `{removed_description, new_graph}` tuple gets returned.\n\n## Examples\n\n iex> RDF.Graph.new({EX.S, EX.P, EX.O}) |>\n ...> RDF.Graph.get_and_update(EX.S, fn current_description ->\n ...> {current_description, {EX.P, EX.NEW}}\n ...> end)\n {RDF.Description.new(EX.S, EX.P, EX.O), RDF.Graph.new(EX.S, EX.P, EX.NEW)}\n","arity":3},{"type":"def","source":"lib/rdf/graph.ex:566","signature":[["graph",[],"Elixir"],["arg",[],"Elixir"]],"object_type":"FunctionObject","name":"include?","module_id":"RDF.Graph","id":"include?/2","doc":"Checks if the given statement exists within a `RDF.Graph`.\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:23","signature":[],"object_type":"FunctionObject","name":"new","module_id":"RDF.Graph","id":"new/0","doc":"Creates an empty unnamed `RDF.Graph`.\n","arity":0},{"type":"def","source":"lib/rdf/graph.ex:29","signature":[["triple",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Graph","id":"new/1","doc":"Creates an empty named `RDF.Graph`.\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:65","signature":[["name",[],null],["triples",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Graph","id":"new/2","doc":"Creates a named `RDF.Graph` from another `RDF.Graph`.\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:89","signature":[["subject",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Graph","id":"new/3","doc":"Creates an unnamed `RDF.Graph` with initial triples.\n","arity":3},{"type":"def","source":"lib/rdf/graph.ex:95","signature":[["name",[],null],["subject",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Graph","id":"new/4","doc":"Creates a named `RDF.Graph` with initial triples.\n","arity":4},{"type":"def","source":"lib/rdf/graph.ex:501","signature":[["graph",[],"Elixir"]],"object_type":"FunctionObject","name":"objects","module_id":"RDF.Graph","id":"objects/1","doc":"The set of all resources used in the objects within a `RDF.Graph`.\n\nNote: This function does collect only URIs and BlankNodes, not Literals.\n\n## Examples\n\n iex> RDF.Graph.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S3, EX.p1, EX.O2},\n ...> {EX.S4, EX.p2, RDF.bnode(:bnode)},\n ...> {EX.S5, EX.p3, \"foo\"}\n ...> ]) |> RDF.Graph.objects\n MapSet.new([RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode)])\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:391","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Graph","id":"pop/1","doc":"Pops an arbitrary triple from a `RDF.Graph`.\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:410","signature":[["graph",[],null],["subject",[],null]],"object_type":"FunctionObject","name":"pop","module_id":"RDF.Graph","id":"pop/2","doc":"Pops the description of the given subject.\n\nWhen the subject can not be found the optionally given default value or `nil` is returned.\n\n## Examples\n\n iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>\n ...> RDF.Graph.pop(EX.S1)\n {RDF.Description.new({EX.S1, EX.P1, EX.O1}), RDF.Graph.new({EX.S2, EX.P2, EX.O2})}\n iex> RDF.Graph.pop(RDF.Graph.new({EX.S, EX.P, EX.O}), EX.Missing)\n {nil, RDF.Graph.new({EX.S, EX.P, EX.O})}\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:481","signature":[["graph",[],"Elixir"]],"object_type":"FunctionObject","name":"predicates","module_id":"RDF.Graph","id":"predicates/1","doc":"The set of all properties used in the predicates of the statements within a `RDF.Graph`.\n\n## Examples\n\n iex> RDF.Graph.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Graph.predicates\n MapSet.new([EX.p1, EX.p2])\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:152","signature":[["graph",[],null],["statements",[],null]],"object_type":"FunctionObject","name":"put","module_id":"RDF.Graph","id":"put/2","doc":"Adds statements to a `RDF.Graph` and overwrites all existing statements with the same subjects and predicates.\n\n## Examples\n\n iex> RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S2, EX.P2, EX.O2}]) |>\n ...> RDF.Graph.put([{EX.S1, EX.P2, EX.O3}, {EX.S2, EX.P2, EX.O3}])\n RDF.Graph.new([{EX.S1, EX.P1, EX.O1}, {EX.S1, EX.P2, EX.O3}, {EX.S2, EX.P2, EX.O3}])\n","arity":2},{"type":"def","source":"lib/rdf/graph.ex:188","signature":[["graph",[],null],["subject",[],null],["predications",[],null]],"object_type":"FunctionObject","name":"put","module_id":"RDF.Graph","id":"put/3","doc":"Add statements to a `RDF.Graph`, overwriting all statements with the same subject and predicate.\n","arity":3},{"type":"def","source":"lib/rdf/graph.ex:221","signature":[["graph",[],null],["subject",[],null],["predicate",[],null],["objects",[],null]],"object_type":"FunctionObject","name":"put","module_id":"RDF.Graph","id":"put/4","doc":"Add statements to a `RDF.Graph`, overwriting all statements with the same subject and predicate.\n\n## Examples\n\n iex> RDF.Graph.new(EX.S, EX.P, EX.O1) |> RDF.Graph.put(EX.S, EX.P, EX.O2)\n RDF.Graph.new(EX.S, EX.P, EX.O2)\n iex> RDF.Graph.new(EX.S, EX.P1, EX.O1) |> RDF.Graph.put(EX.S, EX.P2, EX.O2)\n RDF.Graph.new([{EX.S, EX.P1, EX.O1}, {EX.S, EX.P2, EX.O2}])\n","arity":4},{"type":"def","source":"lib/rdf/graph.ex:525","signature":[["graph",[],"Elixir"]],"object_type":"FunctionObject","name":"resources","module_id":"RDF.Graph","id":"resources/1","doc":"The set of all resources used within a `RDF.Graph`.\n\n## Examples\n\n iex> RDF.Graph.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.S2, EX.p1, EX.O2},\n ...> {EX.S2, EX.p2, RDF.bnode(:bnode)},\n ...> {EX.S3, EX.p1, \"foo\"}\n ...> ]) |> RDF.Graph.resources\n MapSet.new([RDF.uri(EX.S1), RDF.uri(EX.S2), RDF.uri(EX.S3),\n RDF.uri(EX.O1), RDF.uri(EX.O2), RDF.bnode(:bnode), EX.p1, EX.p2])\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:563","signature":[["graph",[],null]],"object_type":"FunctionObject","name":"statements","module_id":"RDF.Graph","id":"statements/1","doc":"See `RDF.Graph.triples/1`.","arity":1},{"type":"def","source":"lib/rdf/graph.ex:433","signature":[["graph",[],"Elixir"]],"object_type":"FunctionObject","name":"subject_count","module_id":"RDF.Graph","id":"subject_count/1","doc":"The number of subjects within a `RDF.Graph`.\n\n## Examples\n\n iex> RDF.Graph.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Graph.subject_count\n 2\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:466","signature":[["graph",[],"Elixir"]],"object_type":"FunctionObject","name":"subjects","module_id":"RDF.Graph","id":"subjects/1","doc":"The set of all subjects used in the statements within a `RDF.Graph`.\n\n## Examples\n\n iex> RDF.Graph.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Graph.subjects\n MapSet.new([RDF.uri(EX.S1), RDF.uri(EX.S2)])\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:448","signature":[["graph",[],"Elixir"]],"object_type":"FunctionObject","name":"triple_count","module_id":"RDF.Graph","id":"triple_count/1","doc":"The number of statements within a `RDF.Graph`.\n\n## Examples\n\n iex> RDF.Graph.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}]) |>\n ...> RDF.Graph.triple_count\n 3\n","arity":1},{"type":"def","source":"lib/rdf/graph.ex:547","signature":[["graph",[],"Elixir"]],"object_type":"FunctionObject","name":"triples","module_id":"RDF.Graph","id":"triples/1","doc":"The list of all statements within a `RDF.Graph`.\n\n## Examples\n\n iex> RDF.Graph.new([\n ...> {EX.S1, EX.p1, EX.O1},\n ...> {EX.S2, EX.p2, EX.O2},\n ...> {EX.S1, EX.p2, EX.O3}\n ...> ]) |> RDF.Graph.triples\n [{RDF.uri(EX.S1), RDF.uri(EX.p1), RDF.uri(EX.O1)},\n {RDF.uri(EX.S1), RDF.uri(EX.p2), RDF.uri(EX.O3)},\n {RDF.uri(EX.S2), RDF.uri(EX.p2), RDF.uri(EX.O2)}]\n","arity":1},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.Integer","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.Integer","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.Integer","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.Integer","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.Integer","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.Integer","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.Integer","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.Integer","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.Integer","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Integer","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.Integer","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/integer.ex:6","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.Integer","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:6","signature":[["msg",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.InvalidLiteralError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:6","signature":[["exception",[],null]],"object_type":"FunctionObject","name":"message","module_id":"RDF.InvalidLiteralError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:2","signature":[["msg",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.InvalidURIError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:2","signature":[["exception",[],null]],"object_type":"FunctionObject","name":"message","module_id":"RDF.InvalidURIError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.LangString","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.LangString","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.LangString","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.LangString","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.LangString","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["value",[],null],["",[],"Elixir"]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.LangString","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.LangString","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.LangString","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.LangString","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.LangString","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.LangString","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/lang_string.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.LangString","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/literal.ex:103","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.Literal","id":"canonical/1","doc":"Returns the given literal in its canonical lexical representation.\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:115","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"canonical?","module_id":"RDF.Literal","id":"canonical?/1","doc":"Returns if the given literal is in its canonical lexical representation.\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:153","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"has_datatype?","module_id":"RDF.Literal","id":"has_datatype?/1","doc":"Returns if a literal is a datatyped literal.\n\nFor historical reasons, this excludes `xsd:string` and `rdf:langString`.\n\nsee <http://www.w3.org/TR/rdf-concepts/#dfn-typed-literal>\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:144","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"has_language?","module_id":"RDF.Literal","id":"has_language?/1","doc":"Returns if a literal is a language-tagged literal.\n\nsee <http://www.w3.org/TR/rdf-concepts/#dfn-plain-literal>\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:91","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.Literal","id":"lexical/1","doc":"Returns the given literal with the canonical lexical representation according to its datatype.\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:18","signature":[["value",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Literal","id":"new/1","doc":"Creates a new `RDF.Literal` of the given value and tries to infer an appropriate XSD datatype.\n\nNote: The `RDF.literal` function is a shortcut to this function.\n\nThe following mapping of Elixir types to XSD datatypes is applied:\n\n| Elixir datatype | XSD datatype |\n| :-------------- | :------------- |\n| `string` | `xsd:string` |\n| `boolean` | `xsd:boolean` |\n| `integer` | `xsd:integer` |\n| `float` | `xsd:double` |\n| `Time` | `xsd:time` |\n| `Date` | `xsd:date` |\n| `DateTime` | `xsd:dateTime` |\n| `NaiveDateTime` | `xsd:dateTime` |\n\n\n## Examples\n\n iex> RDF.Literal.new(42)\n %RDF.Literal{value: 42, datatype: XSD.integer}\n\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:62","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Literal","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/literal.ex:165","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"plain?","module_id":"RDF.Literal","id":"plain?/1","doc":"Returns if a literal is a plain literal.\n\nA plain literal may have a language, but may not have a datatype.\nFor all practical purposes, this includes `xsd:string` literals too.\n\nsee <http://www.w3.org/TR/rdf-concepts/#dfn-plain-literal>\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:133","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"simple?","module_id":"RDF.Literal","id":"simple?/1","doc":"Returns if a literal is a simple literal.\n\nA simple literal has no datatype or language.\n\nsee <http://www.w3.org/TR/sparql11-query/#simple_literal>\n","arity":1},{"type":"def","source":"lib/rdf/literal.ex:177","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"typed?","module_id":"RDF.Literal","id":"typed?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/literal.ex:122","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.Literal","id":"valid?/1","doc":"Returns if the value of the given literal is a valid according to its datatype.\n","arity":1},{"type":"def","source":"lib/rdf/serializations/nquads.ex:1","signature":[],"object_type":"FunctionObject","name":"content_type","module_id":"RDF.NQuads","id":"content_type/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[],"object_type":"FunctionObject","name":"decoder","module_id":"RDF.NQuads","id":"decoder/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[],"object_type":"FunctionObject","name":"encoder","module_id":"RDF.NQuads","id":"encoder/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/nquads.ex:1","signature":[],"object_type":"FunctionObject","name":"extension","module_id":"RDF.NQuads","id":"extension/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/nquads.ex:1","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.NQuads","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[],"object_type":"FunctionObject","name":"options","module_id":"RDF.NQuads","id":"options/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["file",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_file","module_id":"RDF.NQuads","id":"read_file/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["file",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_file!","module_id":"RDF.NQuads","id":"read_file!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["content",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_string","module_id":"RDF.NQuads","id":"read_string/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["content",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_string!","module_id":"RDF.NQuads","id":"read_string!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["data",[],null],["path",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_file","module_id":"RDF.NQuads","id":"write_file/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["data",[],null],["path",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_file!","module_id":"RDF.NQuads","id":"write_file!/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["data",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_string","module_id":"RDF.NQuads","id":"write_string/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/nquads.ex:16","signature":[["data",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_string!","module_id":"RDF.NQuads","id":"write_string!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"__uris__","module_id":"RDF.NS.OWL","id":"__uris__/0","doc":"Returns all known URIs of the vocabulary.\n","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"allValuesFrom","module_id":"RDF.NS.OWL","id":"allValuesFrom/0","doc":"<http://www.w3.org/2002/07/owl#allValuesFrom>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"allValuesFrom","module_id":"RDF.NS.OWL","id":"allValuesFrom/2","doc":"`RDF.Description` builder for `allValuesFrom/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"allValuesFrom","module_id":"RDF.NS.OWL","id":"allValuesFrom/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"allValuesFrom","module_id":"RDF.NS.OWL","id":"allValuesFrom/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"allValuesFrom","module_id":"RDF.NS.OWL","id":"allValuesFrom/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"allValuesFrom","module_id":"RDF.NS.OWL","id":"allValuesFrom/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"annotatedProperty","module_id":"RDF.NS.OWL","id":"annotatedProperty/0","doc":"<http://www.w3.org/2002/07/owl#annotatedProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"annotatedProperty","module_id":"RDF.NS.OWL","id":"annotatedProperty/2","doc":"`RDF.Description` builder for `annotatedProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"annotatedProperty","module_id":"RDF.NS.OWL","id":"annotatedProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"annotatedProperty","module_id":"RDF.NS.OWL","id":"annotatedProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"annotatedProperty","module_id":"RDF.NS.OWL","id":"annotatedProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"annotatedProperty","module_id":"RDF.NS.OWL","id":"annotatedProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"annotatedSource","module_id":"RDF.NS.OWL","id":"annotatedSource/0","doc":"<http://www.w3.org/2002/07/owl#annotatedSource>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"annotatedSource","module_id":"RDF.NS.OWL","id":"annotatedSource/2","doc":"`RDF.Description` builder for `annotatedSource/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"annotatedSource","module_id":"RDF.NS.OWL","id":"annotatedSource/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"annotatedSource","module_id":"RDF.NS.OWL","id":"annotatedSource/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"annotatedSource","module_id":"RDF.NS.OWL","id":"annotatedSource/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"annotatedSource","module_id":"RDF.NS.OWL","id":"annotatedSource/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"annotatedTarget","module_id":"RDF.NS.OWL","id":"annotatedTarget/0","doc":"<http://www.w3.org/2002/07/owl#annotatedTarget>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"annotatedTarget","module_id":"RDF.NS.OWL","id":"annotatedTarget/2","doc":"`RDF.Description` builder for `annotatedTarget/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"annotatedTarget","module_id":"RDF.NS.OWL","id":"annotatedTarget/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"annotatedTarget","module_id":"RDF.NS.OWL","id":"annotatedTarget/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"annotatedTarget","module_id":"RDF.NS.OWL","id":"annotatedTarget/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"annotatedTarget","module_id":"RDF.NS.OWL","id":"annotatedTarget/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"assertionProperty","module_id":"RDF.NS.OWL","id":"assertionProperty/0","doc":"<http://www.w3.org/2002/07/owl#assertionProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"assertionProperty","module_id":"RDF.NS.OWL","id":"assertionProperty/2","doc":"`RDF.Description` builder for `assertionProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"assertionProperty","module_id":"RDF.NS.OWL","id":"assertionProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"assertionProperty","module_id":"RDF.NS.OWL","id":"assertionProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"assertionProperty","module_id":"RDF.NS.OWL","id":"assertionProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"assertionProperty","module_id":"RDF.NS.OWL","id":"assertionProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"backwardCompatibleWith","module_id":"RDF.NS.OWL","id":"backwardCompatibleWith/0","doc":"<http://www.w3.org/2002/07/owl#backwardCompatibleWith>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"backwardCompatibleWith","module_id":"RDF.NS.OWL","id":"backwardCompatibleWith/2","doc":"`RDF.Description` builder for `backwardCompatibleWith/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"backwardCompatibleWith","module_id":"RDF.NS.OWL","id":"backwardCompatibleWith/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"backwardCompatibleWith","module_id":"RDF.NS.OWL","id":"backwardCompatibleWith/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"backwardCompatibleWith","module_id":"RDF.NS.OWL","id":"backwardCompatibleWith/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"backwardCompatibleWith","module_id":"RDF.NS.OWL","id":"backwardCompatibleWith/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"bottomDataProperty","module_id":"RDF.NS.OWL","id":"bottomDataProperty/0","doc":"<http://www.w3.org/2002/07/owl#bottomDataProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"bottomDataProperty","module_id":"RDF.NS.OWL","id":"bottomDataProperty/2","doc":"`RDF.Description` builder for `bottomDataProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"bottomDataProperty","module_id":"RDF.NS.OWL","id":"bottomDataProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"bottomDataProperty","module_id":"RDF.NS.OWL","id":"bottomDataProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"bottomDataProperty","module_id":"RDF.NS.OWL","id":"bottomDataProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"bottomDataProperty","module_id":"RDF.NS.OWL","id":"bottomDataProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"bottomObjectProperty","module_id":"RDF.NS.OWL","id":"bottomObjectProperty/0","doc":"<http://www.w3.org/2002/07/owl#bottomObjectProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"bottomObjectProperty","module_id":"RDF.NS.OWL","id":"bottomObjectProperty/2","doc":"`RDF.Description` builder for `bottomObjectProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"bottomObjectProperty","module_id":"RDF.NS.OWL","id":"bottomObjectProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"bottomObjectProperty","module_id":"RDF.NS.OWL","id":"bottomObjectProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"bottomObjectProperty","module_id":"RDF.NS.OWL","id":"bottomObjectProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"bottomObjectProperty","module_id":"RDF.NS.OWL","id":"bottomObjectProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"cardinality","module_id":"RDF.NS.OWL","id":"cardinality/0","doc":"<http://www.w3.org/2002/07/owl#cardinality>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"cardinality","module_id":"RDF.NS.OWL","id":"cardinality/2","doc":"`RDF.Description` builder for `cardinality/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"cardinality","module_id":"RDF.NS.OWL","id":"cardinality/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"cardinality","module_id":"RDF.NS.OWL","id":"cardinality/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"cardinality","module_id":"RDF.NS.OWL","id":"cardinality/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"cardinality","module_id":"RDF.NS.OWL","id":"cardinality/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"complementOf","module_id":"RDF.NS.OWL","id":"complementOf/0","doc":"<http://www.w3.org/2002/07/owl#complementOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"complementOf","module_id":"RDF.NS.OWL","id":"complementOf/2","doc":"`RDF.Description` builder for `complementOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"complementOf","module_id":"RDF.NS.OWL","id":"complementOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"complementOf","module_id":"RDF.NS.OWL","id":"complementOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"complementOf","module_id":"RDF.NS.OWL","id":"complementOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"complementOf","module_id":"RDF.NS.OWL","id":"complementOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"datatypeComplementOf","module_id":"RDF.NS.OWL","id":"datatypeComplementOf/0","doc":"<http://www.w3.org/2002/07/owl#datatypeComplementOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"datatypeComplementOf","module_id":"RDF.NS.OWL","id":"datatypeComplementOf/2","doc":"`RDF.Description` builder for `datatypeComplementOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"datatypeComplementOf","module_id":"RDF.NS.OWL","id":"datatypeComplementOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"datatypeComplementOf","module_id":"RDF.NS.OWL","id":"datatypeComplementOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"datatypeComplementOf","module_id":"RDF.NS.OWL","id":"datatypeComplementOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"datatypeComplementOf","module_id":"RDF.NS.OWL","id":"datatypeComplementOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"deprecated","module_id":"RDF.NS.OWL","id":"deprecated/0","doc":"<http://www.w3.org/2002/07/owl#deprecated>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"deprecated","module_id":"RDF.NS.OWL","id":"deprecated/2","doc":"`RDF.Description` builder for `deprecated/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"deprecated","module_id":"RDF.NS.OWL","id":"deprecated/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"deprecated","module_id":"RDF.NS.OWL","id":"deprecated/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"deprecated","module_id":"RDF.NS.OWL","id":"deprecated/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"deprecated","module_id":"RDF.NS.OWL","id":"deprecated/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"differentFrom","module_id":"RDF.NS.OWL","id":"differentFrom/0","doc":"<http://www.w3.org/2002/07/owl#differentFrom>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"differentFrom","module_id":"RDF.NS.OWL","id":"differentFrom/2","doc":"`RDF.Description` builder for `differentFrom/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"differentFrom","module_id":"RDF.NS.OWL","id":"differentFrom/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"differentFrom","module_id":"RDF.NS.OWL","id":"differentFrom/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"differentFrom","module_id":"RDF.NS.OWL","id":"differentFrom/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"differentFrom","module_id":"RDF.NS.OWL","id":"differentFrom/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"disjointUnionOf","module_id":"RDF.NS.OWL","id":"disjointUnionOf/0","doc":"<http://www.w3.org/2002/07/owl#disjointUnionOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"disjointUnionOf","module_id":"RDF.NS.OWL","id":"disjointUnionOf/2","doc":"`RDF.Description` builder for `disjointUnionOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"disjointUnionOf","module_id":"RDF.NS.OWL","id":"disjointUnionOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"disjointUnionOf","module_id":"RDF.NS.OWL","id":"disjointUnionOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"disjointUnionOf","module_id":"RDF.NS.OWL","id":"disjointUnionOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"disjointUnionOf","module_id":"RDF.NS.OWL","id":"disjointUnionOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"disjointWith","module_id":"RDF.NS.OWL","id":"disjointWith/0","doc":"<http://www.w3.org/2002/07/owl#disjointWith>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"disjointWith","module_id":"RDF.NS.OWL","id":"disjointWith/2","doc":"`RDF.Description` builder for `disjointWith/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"disjointWith","module_id":"RDF.NS.OWL","id":"disjointWith/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"disjointWith","module_id":"RDF.NS.OWL","id":"disjointWith/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"disjointWith","module_id":"RDF.NS.OWL","id":"disjointWith/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"disjointWith","module_id":"RDF.NS.OWL","id":"disjointWith/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"distinctMembers","module_id":"RDF.NS.OWL","id":"distinctMembers/0","doc":"<http://www.w3.org/2002/07/owl#distinctMembers>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"distinctMembers","module_id":"RDF.NS.OWL","id":"distinctMembers/2","doc":"`RDF.Description` builder for `distinctMembers/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"distinctMembers","module_id":"RDF.NS.OWL","id":"distinctMembers/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"distinctMembers","module_id":"RDF.NS.OWL","id":"distinctMembers/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"distinctMembers","module_id":"RDF.NS.OWL","id":"distinctMembers/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"distinctMembers","module_id":"RDF.NS.OWL","id":"distinctMembers/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"equivalentClass","module_id":"RDF.NS.OWL","id":"equivalentClass/0","doc":"<http://www.w3.org/2002/07/owl#equivalentClass>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"equivalentClass","module_id":"RDF.NS.OWL","id":"equivalentClass/2","doc":"`RDF.Description` builder for `equivalentClass/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"equivalentClass","module_id":"RDF.NS.OWL","id":"equivalentClass/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"equivalentClass","module_id":"RDF.NS.OWL","id":"equivalentClass/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"equivalentClass","module_id":"RDF.NS.OWL","id":"equivalentClass/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"equivalentClass","module_id":"RDF.NS.OWL","id":"equivalentClass/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"equivalentProperty","module_id":"RDF.NS.OWL","id":"equivalentProperty/0","doc":"<http://www.w3.org/2002/07/owl#equivalentProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"equivalentProperty","module_id":"RDF.NS.OWL","id":"equivalentProperty/2","doc":"`RDF.Description` builder for `equivalentProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"equivalentProperty","module_id":"RDF.NS.OWL","id":"equivalentProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"equivalentProperty","module_id":"RDF.NS.OWL","id":"equivalentProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"equivalentProperty","module_id":"RDF.NS.OWL","id":"equivalentProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"equivalentProperty","module_id":"RDF.NS.OWL","id":"equivalentProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"hasKey","module_id":"RDF.NS.OWL","id":"hasKey/0","doc":"<http://www.w3.org/2002/07/owl#hasKey>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"hasKey","module_id":"RDF.NS.OWL","id":"hasKey/2","doc":"`RDF.Description` builder for `hasKey/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"hasKey","module_id":"RDF.NS.OWL","id":"hasKey/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"hasKey","module_id":"RDF.NS.OWL","id":"hasKey/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"hasKey","module_id":"RDF.NS.OWL","id":"hasKey/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"hasKey","module_id":"RDF.NS.OWL","id":"hasKey/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"hasSelf","module_id":"RDF.NS.OWL","id":"hasSelf/0","doc":"<http://www.w3.org/2002/07/owl#hasSelf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"hasSelf","module_id":"RDF.NS.OWL","id":"hasSelf/2","doc":"`RDF.Description` builder for `hasSelf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"hasSelf","module_id":"RDF.NS.OWL","id":"hasSelf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"hasSelf","module_id":"RDF.NS.OWL","id":"hasSelf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"hasSelf","module_id":"RDF.NS.OWL","id":"hasSelf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"hasSelf","module_id":"RDF.NS.OWL","id":"hasSelf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"hasValue","module_id":"RDF.NS.OWL","id":"hasValue/0","doc":"<http://www.w3.org/2002/07/owl#hasValue>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"hasValue","module_id":"RDF.NS.OWL","id":"hasValue/2","doc":"`RDF.Description` builder for `hasValue/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"hasValue","module_id":"RDF.NS.OWL","id":"hasValue/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"hasValue","module_id":"RDF.NS.OWL","id":"hasValue/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"hasValue","module_id":"RDF.NS.OWL","id":"hasValue/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"hasValue","module_id":"RDF.NS.OWL","id":"hasValue/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"imports","module_id":"RDF.NS.OWL","id":"imports/0","doc":"<http://www.w3.org/2002/07/owl#imports>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"imports","module_id":"RDF.NS.OWL","id":"imports/2","doc":"`RDF.Description` builder for `imports/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"imports","module_id":"RDF.NS.OWL","id":"imports/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"imports","module_id":"RDF.NS.OWL","id":"imports/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"imports","module_id":"RDF.NS.OWL","id":"imports/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"imports","module_id":"RDF.NS.OWL","id":"imports/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"incompatibleWith","module_id":"RDF.NS.OWL","id":"incompatibleWith/0","doc":"<http://www.w3.org/2002/07/owl#incompatibleWith>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"incompatibleWith","module_id":"RDF.NS.OWL","id":"incompatibleWith/2","doc":"`RDF.Description` builder for `incompatibleWith/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"incompatibleWith","module_id":"RDF.NS.OWL","id":"incompatibleWith/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"incompatibleWith","module_id":"RDF.NS.OWL","id":"incompatibleWith/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"incompatibleWith","module_id":"RDF.NS.OWL","id":"incompatibleWith/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"incompatibleWith","module_id":"RDF.NS.OWL","id":"incompatibleWith/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"intersectionOf","module_id":"RDF.NS.OWL","id":"intersectionOf/0","doc":"<http://www.w3.org/2002/07/owl#intersectionOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"intersectionOf","module_id":"RDF.NS.OWL","id":"intersectionOf/2","doc":"`RDF.Description` builder for `intersectionOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"intersectionOf","module_id":"RDF.NS.OWL","id":"intersectionOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"intersectionOf","module_id":"RDF.NS.OWL","id":"intersectionOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"intersectionOf","module_id":"RDF.NS.OWL","id":"intersectionOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"intersectionOf","module_id":"RDF.NS.OWL","id":"intersectionOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"inverseOf","module_id":"RDF.NS.OWL","id":"inverseOf/0","doc":"<http://www.w3.org/2002/07/owl#inverseOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"inverseOf","module_id":"RDF.NS.OWL","id":"inverseOf/2","doc":"`RDF.Description` builder for `inverseOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"inverseOf","module_id":"RDF.NS.OWL","id":"inverseOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"inverseOf","module_id":"RDF.NS.OWL","id":"inverseOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"inverseOf","module_id":"RDF.NS.OWL","id":"inverseOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"inverseOf","module_id":"RDF.NS.OWL","id":"inverseOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"maxCardinality","module_id":"RDF.NS.OWL","id":"maxCardinality/0","doc":"<http://www.w3.org/2002/07/owl#maxCardinality>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"maxCardinality","module_id":"RDF.NS.OWL","id":"maxCardinality/2","doc":"`RDF.Description` builder for `maxCardinality/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"maxCardinality","module_id":"RDF.NS.OWL","id":"maxCardinality/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"maxCardinality","module_id":"RDF.NS.OWL","id":"maxCardinality/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"maxCardinality","module_id":"RDF.NS.OWL","id":"maxCardinality/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"maxCardinality","module_id":"RDF.NS.OWL","id":"maxCardinality/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"maxQualifiedCardinality","module_id":"RDF.NS.OWL","id":"maxQualifiedCardinality/0","doc":"<http://www.w3.org/2002/07/owl#maxQualifiedCardinality>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"maxQualifiedCardinality","module_id":"RDF.NS.OWL","id":"maxQualifiedCardinality/2","doc":"`RDF.Description` builder for `maxQualifiedCardinality/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"maxQualifiedCardinality","module_id":"RDF.NS.OWL","id":"maxQualifiedCardinality/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"maxQualifiedCardinality","module_id":"RDF.NS.OWL","id":"maxQualifiedCardinality/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"maxQualifiedCardinality","module_id":"RDF.NS.OWL","id":"maxQualifiedCardinality/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"maxQualifiedCardinality","module_id":"RDF.NS.OWL","id":"maxQualifiedCardinality/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"members","module_id":"RDF.NS.OWL","id":"members/0","doc":"<http://www.w3.org/2002/07/owl#members>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"members","module_id":"RDF.NS.OWL","id":"members/2","doc":"`RDF.Description` builder for `members/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"members","module_id":"RDF.NS.OWL","id":"members/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"members","module_id":"RDF.NS.OWL","id":"members/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"members","module_id":"RDF.NS.OWL","id":"members/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"members","module_id":"RDF.NS.OWL","id":"members/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"minCardinality","module_id":"RDF.NS.OWL","id":"minCardinality/0","doc":"<http://www.w3.org/2002/07/owl#minCardinality>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"minCardinality","module_id":"RDF.NS.OWL","id":"minCardinality/2","doc":"`RDF.Description` builder for `minCardinality/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"minCardinality","module_id":"RDF.NS.OWL","id":"minCardinality/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"minCardinality","module_id":"RDF.NS.OWL","id":"minCardinality/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"minCardinality","module_id":"RDF.NS.OWL","id":"minCardinality/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"minCardinality","module_id":"RDF.NS.OWL","id":"minCardinality/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"minQualifiedCardinality","module_id":"RDF.NS.OWL","id":"minQualifiedCardinality/0","doc":"<http://www.w3.org/2002/07/owl#minQualifiedCardinality>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"minQualifiedCardinality","module_id":"RDF.NS.OWL","id":"minQualifiedCardinality/2","doc":"`RDF.Description` builder for `minQualifiedCardinality/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"minQualifiedCardinality","module_id":"RDF.NS.OWL","id":"minQualifiedCardinality/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"minQualifiedCardinality","module_id":"RDF.NS.OWL","id":"minQualifiedCardinality/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"minQualifiedCardinality","module_id":"RDF.NS.OWL","id":"minQualifiedCardinality/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"minQualifiedCardinality","module_id":"RDF.NS.OWL","id":"minQualifiedCardinality/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"onClass","module_id":"RDF.NS.OWL","id":"onClass/0","doc":"<http://www.w3.org/2002/07/owl#onClass>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"onClass","module_id":"RDF.NS.OWL","id":"onClass/2","doc":"`RDF.Description` builder for `onClass/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"onClass","module_id":"RDF.NS.OWL","id":"onClass/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"onClass","module_id":"RDF.NS.OWL","id":"onClass/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"onClass","module_id":"RDF.NS.OWL","id":"onClass/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"onClass","module_id":"RDF.NS.OWL","id":"onClass/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"onDataRange","module_id":"RDF.NS.OWL","id":"onDataRange/0","doc":"<http://www.w3.org/2002/07/owl#onDataRange>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"onDataRange","module_id":"RDF.NS.OWL","id":"onDataRange/2","doc":"`RDF.Description` builder for `onDataRange/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"onDataRange","module_id":"RDF.NS.OWL","id":"onDataRange/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"onDataRange","module_id":"RDF.NS.OWL","id":"onDataRange/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"onDataRange","module_id":"RDF.NS.OWL","id":"onDataRange/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"onDataRange","module_id":"RDF.NS.OWL","id":"onDataRange/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"onDatatype","module_id":"RDF.NS.OWL","id":"onDatatype/0","doc":"<http://www.w3.org/2002/07/owl#onDatatype>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"onDatatype","module_id":"RDF.NS.OWL","id":"onDatatype/2","doc":"`RDF.Description` builder for `onDatatype/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"onDatatype","module_id":"RDF.NS.OWL","id":"onDatatype/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"onDatatype","module_id":"RDF.NS.OWL","id":"onDatatype/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"onDatatype","module_id":"RDF.NS.OWL","id":"onDatatype/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"onDatatype","module_id":"RDF.NS.OWL","id":"onDatatype/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"onProperties","module_id":"RDF.NS.OWL","id":"onProperties/0","doc":"<http://www.w3.org/2002/07/owl#onProperties>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"onProperties","module_id":"RDF.NS.OWL","id":"onProperties/2","doc":"`RDF.Description` builder for `onProperties/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"onProperties","module_id":"RDF.NS.OWL","id":"onProperties/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"onProperties","module_id":"RDF.NS.OWL","id":"onProperties/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"onProperties","module_id":"RDF.NS.OWL","id":"onProperties/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"onProperties","module_id":"RDF.NS.OWL","id":"onProperties/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"onProperty","module_id":"RDF.NS.OWL","id":"onProperty/0","doc":"<http://www.w3.org/2002/07/owl#onProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"onProperty","module_id":"RDF.NS.OWL","id":"onProperty/2","doc":"`RDF.Description` builder for `onProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"onProperty","module_id":"RDF.NS.OWL","id":"onProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"onProperty","module_id":"RDF.NS.OWL","id":"onProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"onProperty","module_id":"RDF.NS.OWL","id":"onProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"onProperty","module_id":"RDF.NS.OWL","id":"onProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"oneOf","module_id":"RDF.NS.OWL","id":"oneOf/0","doc":"<http://www.w3.org/2002/07/owl#oneOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"oneOf","module_id":"RDF.NS.OWL","id":"oneOf/2","doc":"`RDF.Description` builder for `oneOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"oneOf","module_id":"RDF.NS.OWL","id":"oneOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"oneOf","module_id":"RDF.NS.OWL","id":"oneOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"oneOf","module_id":"RDF.NS.OWL","id":"oneOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"oneOf","module_id":"RDF.NS.OWL","id":"oneOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"priorVersion","module_id":"RDF.NS.OWL","id":"priorVersion/0","doc":"<http://www.w3.org/2002/07/owl#priorVersion>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"priorVersion","module_id":"RDF.NS.OWL","id":"priorVersion/2","doc":"`RDF.Description` builder for `priorVersion/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"priorVersion","module_id":"RDF.NS.OWL","id":"priorVersion/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"priorVersion","module_id":"RDF.NS.OWL","id":"priorVersion/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"priorVersion","module_id":"RDF.NS.OWL","id":"priorVersion/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"priorVersion","module_id":"RDF.NS.OWL","id":"priorVersion/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"propertyChainAxiom","module_id":"RDF.NS.OWL","id":"propertyChainAxiom/0","doc":"<http://www.w3.org/2002/07/owl#propertyChainAxiom>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"propertyChainAxiom","module_id":"RDF.NS.OWL","id":"propertyChainAxiom/2","doc":"`RDF.Description` builder for `propertyChainAxiom/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"propertyChainAxiom","module_id":"RDF.NS.OWL","id":"propertyChainAxiom/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"propertyChainAxiom","module_id":"RDF.NS.OWL","id":"propertyChainAxiom/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"propertyChainAxiom","module_id":"RDF.NS.OWL","id":"propertyChainAxiom/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"propertyChainAxiom","module_id":"RDF.NS.OWL","id":"propertyChainAxiom/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"propertyDisjointWith","module_id":"RDF.NS.OWL","id":"propertyDisjointWith/0","doc":"<http://www.w3.org/2002/07/owl#propertyDisjointWith>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"propertyDisjointWith","module_id":"RDF.NS.OWL","id":"propertyDisjointWith/2","doc":"`RDF.Description` builder for `propertyDisjointWith/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"propertyDisjointWith","module_id":"RDF.NS.OWL","id":"propertyDisjointWith/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"propertyDisjointWith","module_id":"RDF.NS.OWL","id":"propertyDisjointWith/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"propertyDisjointWith","module_id":"RDF.NS.OWL","id":"propertyDisjointWith/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"propertyDisjointWith","module_id":"RDF.NS.OWL","id":"propertyDisjointWith/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"qualifiedCardinality","module_id":"RDF.NS.OWL","id":"qualifiedCardinality/0","doc":"<http://www.w3.org/2002/07/owl#qualifiedCardinality>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"qualifiedCardinality","module_id":"RDF.NS.OWL","id":"qualifiedCardinality/2","doc":"`RDF.Description` builder for `qualifiedCardinality/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"qualifiedCardinality","module_id":"RDF.NS.OWL","id":"qualifiedCardinality/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"qualifiedCardinality","module_id":"RDF.NS.OWL","id":"qualifiedCardinality/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"qualifiedCardinality","module_id":"RDF.NS.OWL","id":"qualifiedCardinality/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"qualifiedCardinality","module_id":"RDF.NS.OWL","id":"qualifiedCardinality/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"sameAs","module_id":"RDF.NS.OWL","id":"sameAs/0","doc":"<http://www.w3.org/2002/07/owl#sameAs>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"sameAs","module_id":"RDF.NS.OWL","id":"sameAs/2","doc":"`RDF.Description` builder for `sameAs/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"sameAs","module_id":"RDF.NS.OWL","id":"sameAs/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"sameAs","module_id":"RDF.NS.OWL","id":"sameAs/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"sameAs","module_id":"RDF.NS.OWL","id":"sameAs/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"sameAs","module_id":"RDF.NS.OWL","id":"sameAs/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"someValuesFrom","module_id":"RDF.NS.OWL","id":"someValuesFrom/0","doc":"<http://www.w3.org/2002/07/owl#someValuesFrom>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"someValuesFrom","module_id":"RDF.NS.OWL","id":"someValuesFrom/2","doc":"`RDF.Description` builder for `someValuesFrom/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"someValuesFrom","module_id":"RDF.NS.OWL","id":"someValuesFrom/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"someValuesFrom","module_id":"RDF.NS.OWL","id":"someValuesFrom/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"someValuesFrom","module_id":"RDF.NS.OWL","id":"someValuesFrom/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"someValuesFrom","module_id":"RDF.NS.OWL","id":"someValuesFrom/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"sourceIndividual","module_id":"RDF.NS.OWL","id":"sourceIndividual/0","doc":"<http://www.w3.org/2002/07/owl#sourceIndividual>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"sourceIndividual","module_id":"RDF.NS.OWL","id":"sourceIndividual/2","doc":"`RDF.Description` builder for `sourceIndividual/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"sourceIndividual","module_id":"RDF.NS.OWL","id":"sourceIndividual/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"sourceIndividual","module_id":"RDF.NS.OWL","id":"sourceIndividual/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"sourceIndividual","module_id":"RDF.NS.OWL","id":"sourceIndividual/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"sourceIndividual","module_id":"RDF.NS.OWL","id":"sourceIndividual/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"targetIndividual","module_id":"RDF.NS.OWL","id":"targetIndividual/0","doc":"<http://www.w3.org/2002/07/owl#targetIndividual>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"targetIndividual","module_id":"RDF.NS.OWL","id":"targetIndividual/2","doc":"`RDF.Description` builder for `targetIndividual/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"targetIndividual","module_id":"RDF.NS.OWL","id":"targetIndividual/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"targetIndividual","module_id":"RDF.NS.OWL","id":"targetIndividual/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"targetIndividual","module_id":"RDF.NS.OWL","id":"targetIndividual/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"targetIndividual","module_id":"RDF.NS.OWL","id":"targetIndividual/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"targetValue","module_id":"RDF.NS.OWL","id":"targetValue/0","doc":"<http://www.w3.org/2002/07/owl#targetValue>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"targetValue","module_id":"RDF.NS.OWL","id":"targetValue/2","doc":"`RDF.Description` builder for `targetValue/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"targetValue","module_id":"RDF.NS.OWL","id":"targetValue/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"targetValue","module_id":"RDF.NS.OWL","id":"targetValue/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"targetValue","module_id":"RDF.NS.OWL","id":"targetValue/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"targetValue","module_id":"RDF.NS.OWL","id":"targetValue/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"topDataProperty","module_id":"RDF.NS.OWL","id":"topDataProperty/0","doc":"<http://www.w3.org/2002/07/owl#topDataProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"topDataProperty","module_id":"RDF.NS.OWL","id":"topDataProperty/2","doc":"`RDF.Description` builder for `topDataProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"topDataProperty","module_id":"RDF.NS.OWL","id":"topDataProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"topDataProperty","module_id":"RDF.NS.OWL","id":"topDataProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"topDataProperty","module_id":"RDF.NS.OWL","id":"topDataProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"topDataProperty","module_id":"RDF.NS.OWL","id":"topDataProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"topObjectProperty","module_id":"RDF.NS.OWL","id":"topObjectProperty/0","doc":"<http://www.w3.org/2002/07/owl#topObjectProperty>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"topObjectProperty","module_id":"RDF.NS.OWL","id":"topObjectProperty/2","doc":"`RDF.Description` builder for `topObjectProperty/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"topObjectProperty","module_id":"RDF.NS.OWL","id":"topObjectProperty/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"topObjectProperty","module_id":"RDF.NS.OWL","id":"topObjectProperty/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"topObjectProperty","module_id":"RDF.NS.OWL","id":"topObjectProperty/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"topObjectProperty","module_id":"RDF.NS.OWL","id":"topObjectProperty/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"unionOf","module_id":"RDF.NS.OWL","id":"unionOf/0","doc":"<http://www.w3.org/2002/07/owl#unionOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"unionOf","module_id":"RDF.NS.OWL","id":"unionOf/2","doc":"`RDF.Description` builder for `unionOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"unionOf","module_id":"RDF.NS.OWL","id":"unionOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"unionOf","module_id":"RDF.NS.OWL","id":"unionOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"unionOf","module_id":"RDF.NS.OWL","id":"unionOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"unionOf","module_id":"RDF.NS.OWL","id":"unionOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"versionIRI","module_id":"RDF.NS.OWL","id":"versionIRI/0","doc":"<http://www.w3.org/2002/07/owl#versionIRI>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"versionIRI","module_id":"RDF.NS.OWL","id":"versionIRI/2","doc":"`RDF.Description` builder for `versionIRI/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"versionIRI","module_id":"RDF.NS.OWL","id":"versionIRI/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"versionIRI","module_id":"RDF.NS.OWL","id":"versionIRI/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"versionIRI","module_id":"RDF.NS.OWL","id":"versionIRI/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"versionIRI","module_id":"RDF.NS.OWL","id":"versionIRI/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"versionInfo","module_id":"RDF.NS.OWL","id":"versionInfo/0","doc":"<http://www.w3.org/2002/07/owl#versionInfo>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"versionInfo","module_id":"RDF.NS.OWL","id":"versionInfo/2","doc":"`RDF.Description` builder for `versionInfo/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"versionInfo","module_id":"RDF.NS.OWL","id":"versionInfo/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"versionInfo","module_id":"RDF.NS.OWL","id":"versionInfo/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"versionInfo","module_id":"RDF.NS.OWL","id":"versionInfo/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"versionInfo","module_id":"RDF.NS.OWL","id":"versionInfo/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[],"object_type":"FunctionObject","name":"withRestrictions","module_id":"RDF.NS.OWL","id":"withRestrictions/0","doc":"<http://www.w3.org/2002/07/owl#withRestrictions>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"withRestrictions","module_id":"RDF.NS.OWL","id":"withRestrictions/2","doc":"`RDF.Description` builder for `withRestrictions/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"withRestrictions","module_id":"RDF.NS.OWL","id":"withRestrictions/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"withRestrictions","module_id":"RDF.NS.OWL","id":"withRestrictions/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"withRestrictions","module_id":"RDF.NS.OWL","id":"withRestrictions/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:52","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"withRestrictions","module_id":"RDF.NS.OWL","id":"withRestrictions/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"__uris__","module_id":"RDF.NS.RDF","id":"__uris__/0","doc":"Returns all known URIs of the vocabulary.\n","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"first","module_id":"RDF.NS.RDF","id":"first/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#first>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF.NS.RDF","id":"first/2","doc":"`RDF.Description` builder for `first/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF.NS.RDF","id":"first/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF.NS.RDF","id":"first/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF.NS.RDF","id":"first/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"first","module_id":"RDF.NS.RDF","id":"first/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"langString","module_id":"RDF.NS.RDF","id":"langString/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"langString","module_id":"RDF.NS.RDF","id":"langString/2","doc":"`RDF.Description` builder for `langString/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"langString","module_id":"RDF.NS.RDF","id":"langString/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"langString","module_id":"RDF.NS.RDF","id":"langString/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"langString","module_id":"RDF.NS.RDF","id":"langString/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"langString","module_id":"RDF.NS.RDF","id":"langString/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":null,"module_id":"RDF.NS.RDF","id":"/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":null,"module_id":"RDF.NS.RDF","id":"/2","doc":"`RDF.Description` builder for `/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":null,"module_id":"RDF.NS.RDF","id":"/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":null,"module_id":"RDF.NS.RDF","id":"/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":null,"module_id":"RDF.NS.RDF","id":"/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":null,"module_id":"RDF.NS.RDF","id":"/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"object","module_id":"RDF.NS.RDF","id":"object/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#object>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF.NS.RDF","id":"object/2","doc":"`RDF.Description` builder for `object/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF.NS.RDF","id":"object/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF.NS.RDF","id":"object/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF.NS.RDF","id":"object/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"object","module_id":"RDF.NS.RDF","id":"object/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"predicate","module_id":"RDF.NS.RDF","id":"predicate/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF.NS.RDF","id":"predicate/2","doc":"`RDF.Description` builder for `predicate/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF.NS.RDF","id":"predicate/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF.NS.RDF","id":"predicate/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF.NS.RDF","id":"predicate/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"predicate","module_id":"RDF.NS.RDF","id":"predicate/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"rest","module_id":"RDF.NS.RDF","id":"rest/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF.NS.RDF","id":"rest/2","doc":"`RDF.Description` builder for `rest/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF.NS.RDF","id":"rest/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF.NS.RDF","id":"rest/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF.NS.RDF","id":"rest/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"rest","module_id":"RDF.NS.RDF","id":"rest/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"subject","module_id":"RDF.NS.RDF","id":"subject/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#subject>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF.NS.RDF","id":"subject/2","doc":"`RDF.Description` builder for `subject/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF.NS.RDF","id":"subject/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF.NS.RDF","id":"subject/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF.NS.RDF","id":"subject/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"subject","module_id":"RDF.NS.RDF","id":"subject/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"type","module_id":"RDF.NS.RDF","id":"type/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF.NS.RDF","id":"type/2","doc":"`RDF.Description` builder for `type/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF.NS.RDF","id":"type/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF.NS.RDF","id":"type/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF.NS.RDF","id":"type/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"type","module_id":"RDF.NS.RDF","id":"type/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[],"object_type":"FunctionObject","name":"value","module_id":"RDF.NS.RDF","id":"value/0","doc":"<http://www.w3.org/1999/02/22-rdf-syntax-ns#value>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF.NS.RDF","id":"value/2","doc":"`RDF.Description` builder for `value/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF.NS.RDF","id":"value/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF.NS.RDF","id":"value/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF.NS.RDF","id":"value/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:30","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"value","module_id":"RDF.NS.RDF","id":"value/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"__uris__","module_id":"RDF.NS.RDFS","id":"__uris__/0","doc":"Returns all known URIs of the vocabulary.\n","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"comment","module_id":"RDF.NS.RDFS","id":"comment/0","doc":"<http://www.w3.org/2000/01/rdf-schema#comment>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"comment","module_id":"RDF.NS.RDFS","id":"comment/2","doc":"`RDF.Description` builder for `comment/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"comment","module_id":"RDF.NS.RDFS","id":"comment/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"comment","module_id":"RDF.NS.RDFS","id":"comment/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"comment","module_id":"RDF.NS.RDFS","id":"comment/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"comment","module_id":"RDF.NS.RDFS","id":"comment/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"domain","module_id":"RDF.NS.RDFS","id":"domain/0","doc":"<http://www.w3.org/2000/01/rdf-schema#domain>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"domain","module_id":"RDF.NS.RDFS","id":"domain/2","doc":"`RDF.Description` builder for `domain/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"domain","module_id":"RDF.NS.RDFS","id":"domain/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"domain","module_id":"RDF.NS.RDFS","id":"domain/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"domain","module_id":"RDF.NS.RDFS","id":"domain/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"domain","module_id":"RDF.NS.RDFS","id":"domain/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"isDefinedBy","module_id":"RDF.NS.RDFS","id":"isDefinedBy/0","doc":"<http://www.w3.org/2000/01/rdf-schema#isDefinedBy>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"isDefinedBy","module_id":"RDF.NS.RDFS","id":"isDefinedBy/2","doc":"`RDF.Description` builder for `isDefinedBy/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"isDefinedBy","module_id":"RDF.NS.RDFS","id":"isDefinedBy/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"isDefinedBy","module_id":"RDF.NS.RDFS","id":"isDefinedBy/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"isDefinedBy","module_id":"RDF.NS.RDFS","id":"isDefinedBy/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"isDefinedBy","module_id":"RDF.NS.RDFS","id":"isDefinedBy/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"label","module_id":"RDF.NS.RDFS","id":"label/0","doc":"<http://www.w3.org/2000/01/rdf-schema#label>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"label","module_id":"RDF.NS.RDFS","id":"label/2","doc":"`RDF.Description` builder for `label/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"label","module_id":"RDF.NS.RDFS","id":"label/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"label","module_id":"RDF.NS.RDFS","id":"label/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"label","module_id":"RDF.NS.RDFS","id":"label/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"label","module_id":"RDF.NS.RDFS","id":"label/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.RDFS","id":"member/0","doc":"<http://www.w3.org/2000/01/rdf-schema#member>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.RDFS","id":"member/2","doc":"`RDF.Description` builder for `member/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.RDFS","id":"member/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.RDFS","id":"member/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.RDFS","id":"member/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.RDFS","id":"member/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"range","module_id":"RDF.NS.RDFS","id":"range/0","doc":"<http://www.w3.org/2000/01/rdf-schema#range>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"range","module_id":"RDF.NS.RDFS","id":"range/2","doc":"`RDF.Description` builder for `range/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"range","module_id":"RDF.NS.RDFS","id":"range/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"range","module_id":"RDF.NS.RDFS","id":"range/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"range","module_id":"RDF.NS.RDFS","id":"range/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"range","module_id":"RDF.NS.RDFS","id":"range/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"seeAlso","module_id":"RDF.NS.RDFS","id":"seeAlso/0","doc":"<http://www.w3.org/2000/01/rdf-schema#seeAlso>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"seeAlso","module_id":"RDF.NS.RDFS","id":"seeAlso/2","doc":"`RDF.Description` builder for `seeAlso/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"seeAlso","module_id":"RDF.NS.RDFS","id":"seeAlso/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"seeAlso","module_id":"RDF.NS.RDFS","id":"seeAlso/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"seeAlso","module_id":"RDF.NS.RDFS","id":"seeAlso/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"seeAlso","module_id":"RDF.NS.RDFS","id":"seeAlso/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"subClassOf","module_id":"RDF.NS.RDFS","id":"subClassOf/0","doc":"<http://www.w3.org/2000/01/rdf-schema#subClassOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"subClassOf","module_id":"RDF.NS.RDFS","id":"subClassOf/2","doc":"`RDF.Description` builder for `subClassOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"subClassOf","module_id":"RDF.NS.RDFS","id":"subClassOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"subClassOf","module_id":"RDF.NS.RDFS","id":"subClassOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"subClassOf","module_id":"RDF.NS.RDFS","id":"subClassOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"subClassOf","module_id":"RDF.NS.RDFS","id":"subClassOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[],"object_type":"FunctionObject","name":"subPropertyOf","module_id":"RDF.NS.RDFS","id":"subPropertyOf/0","doc":"<http://www.w3.org/2000/01/rdf-schema#subPropertyOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"subPropertyOf","module_id":"RDF.NS.RDFS","id":"subPropertyOf/2","doc":"`RDF.Description` builder for `subPropertyOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"subPropertyOf","module_id":"RDF.NS.RDFS","id":"subPropertyOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"subPropertyOf","module_id":"RDF.NS.RDFS","id":"subPropertyOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"subPropertyOf","module_id":"RDF.NS.RDFS","id":"subPropertyOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:43","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"subPropertyOf","module_id":"RDF.NS.RDFS","id":"subPropertyOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"__uris__","module_id":"RDF.NS.SKOS","id":"__uris__/0","doc":"Returns all known URIs of the vocabulary.\n","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"altLabel","module_id":"RDF.NS.SKOS","id":"altLabel/0","doc":"<http://www.w3.org/2004/02/skos/core#altLabel>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"altLabel","module_id":"RDF.NS.SKOS","id":"altLabel/2","doc":"`RDF.Description` builder for `altLabel/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"altLabel","module_id":"RDF.NS.SKOS","id":"altLabel/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"altLabel","module_id":"RDF.NS.SKOS","id":"altLabel/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"altLabel","module_id":"RDF.NS.SKOS","id":"altLabel/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"altLabel","module_id":"RDF.NS.SKOS","id":"altLabel/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"broadMatch","module_id":"RDF.NS.SKOS","id":"broadMatch/0","doc":"<http://www.w3.org/2004/02/skos/core#broadMatch>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"broadMatch","module_id":"RDF.NS.SKOS","id":"broadMatch/2","doc":"`RDF.Description` builder for `broadMatch/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"broadMatch","module_id":"RDF.NS.SKOS","id":"broadMatch/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"broadMatch","module_id":"RDF.NS.SKOS","id":"broadMatch/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"broadMatch","module_id":"RDF.NS.SKOS","id":"broadMatch/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"broadMatch","module_id":"RDF.NS.SKOS","id":"broadMatch/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"broader","module_id":"RDF.NS.SKOS","id":"broader/0","doc":"<http://www.w3.org/2004/02/skos/core#broader>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"broader","module_id":"RDF.NS.SKOS","id":"broader/2","doc":"`RDF.Description` builder for `broader/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"broader","module_id":"RDF.NS.SKOS","id":"broader/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"broader","module_id":"RDF.NS.SKOS","id":"broader/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"broader","module_id":"RDF.NS.SKOS","id":"broader/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"broader","module_id":"RDF.NS.SKOS","id":"broader/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"broaderTransitive","module_id":"RDF.NS.SKOS","id":"broaderTransitive/0","doc":"<http://www.w3.org/2004/02/skos/core#broaderTransitive>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"broaderTransitive","module_id":"RDF.NS.SKOS","id":"broaderTransitive/2","doc":"`RDF.Description` builder for `broaderTransitive/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"broaderTransitive","module_id":"RDF.NS.SKOS","id":"broaderTransitive/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"broaderTransitive","module_id":"RDF.NS.SKOS","id":"broaderTransitive/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"broaderTransitive","module_id":"RDF.NS.SKOS","id":"broaderTransitive/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"broaderTransitive","module_id":"RDF.NS.SKOS","id":"broaderTransitive/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"changeNote","module_id":"RDF.NS.SKOS","id":"changeNote/0","doc":"<http://www.w3.org/2004/02/skos/core#changeNote>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"changeNote","module_id":"RDF.NS.SKOS","id":"changeNote/2","doc":"`RDF.Description` builder for `changeNote/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"changeNote","module_id":"RDF.NS.SKOS","id":"changeNote/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"changeNote","module_id":"RDF.NS.SKOS","id":"changeNote/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"changeNote","module_id":"RDF.NS.SKOS","id":"changeNote/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"changeNote","module_id":"RDF.NS.SKOS","id":"changeNote/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"closeMatch","module_id":"RDF.NS.SKOS","id":"closeMatch/0","doc":"<http://www.w3.org/2004/02/skos/core#closeMatch>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"closeMatch","module_id":"RDF.NS.SKOS","id":"closeMatch/2","doc":"`RDF.Description` builder for `closeMatch/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"closeMatch","module_id":"RDF.NS.SKOS","id":"closeMatch/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"closeMatch","module_id":"RDF.NS.SKOS","id":"closeMatch/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"closeMatch","module_id":"RDF.NS.SKOS","id":"closeMatch/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"closeMatch","module_id":"RDF.NS.SKOS","id":"closeMatch/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"definition","module_id":"RDF.NS.SKOS","id":"definition/0","doc":"<http://www.w3.org/2004/02/skos/core#definition>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"definition","module_id":"RDF.NS.SKOS","id":"definition/2","doc":"`RDF.Description` builder for `definition/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"definition","module_id":"RDF.NS.SKOS","id":"definition/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"definition","module_id":"RDF.NS.SKOS","id":"definition/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"definition","module_id":"RDF.NS.SKOS","id":"definition/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"definition","module_id":"RDF.NS.SKOS","id":"definition/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"editorialNote","module_id":"RDF.NS.SKOS","id":"editorialNote/0","doc":"<http://www.w3.org/2004/02/skos/core#editorialNote>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"editorialNote","module_id":"RDF.NS.SKOS","id":"editorialNote/2","doc":"`RDF.Description` builder for `editorialNote/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"editorialNote","module_id":"RDF.NS.SKOS","id":"editorialNote/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"editorialNote","module_id":"RDF.NS.SKOS","id":"editorialNote/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"editorialNote","module_id":"RDF.NS.SKOS","id":"editorialNote/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"editorialNote","module_id":"RDF.NS.SKOS","id":"editorialNote/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"exactMatch","module_id":"RDF.NS.SKOS","id":"exactMatch/0","doc":"<http://www.w3.org/2004/02/skos/core#exactMatch>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"exactMatch","module_id":"RDF.NS.SKOS","id":"exactMatch/2","doc":"`RDF.Description` builder for `exactMatch/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"exactMatch","module_id":"RDF.NS.SKOS","id":"exactMatch/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"exactMatch","module_id":"RDF.NS.SKOS","id":"exactMatch/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"exactMatch","module_id":"RDF.NS.SKOS","id":"exactMatch/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"exactMatch","module_id":"RDF.NS.SKOS","id":"exactMatch/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"example","module_id":"RDF.NS.SKOS","id":"example/0","doc":"<http://www.w3.org/2004/02/skos/core#example>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"example","module_id":"RDF.NS.SKOS","id":"example/2","doc":"`RDF.Description` builder for `example/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"example","module_id":"RDF.NS.SKOS","id":"example/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"example","module_id":"RDF.NS.SKOS","id":"example/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"example","module_id":"RDF.NS.SKOS","id":"example/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"example","module_id":"RDF.NS.SKOS","id":"example/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"hasTopConcept","module_id":"RDF.NS.SKOS","id":"hasTopConcept/0","doc":"<http://www.w3.org/2004/02/skos/core#hasTopConcept>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"hasTopConcept","module_id":"RDF.NS.SKOS","id":"hasTopConcept/2","doc":"`RDF.Description` builder for `hasTopConcept/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"hasTopConcept","module_id":"RDF.NS.SKOS","id":"hasTopConcept/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"hasTopConcept","module_id":"RDF.NS.SKOS","id":"hasTopConcept/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"hasTopConcept","module_id":"RDF.NS.SKOS","id":"hasTopConcept/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"hasTopConcept","module_id":"RDF.NS.SKOS","id":"hasTopConcept/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"hiddenLabel","module_id":"RDF.NS.SKOS","id":"hiddenLabel/0","doc":"<http://www.w3.org/2004/02/skos/core#hiddenLabel>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"hiddenLabel","module_id":"RDF.NS.SKOS","id":"hiddenLabel/2","doc":"`RDF.Description` builder for `hiddenLabel/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"hiddenLabel","module_id":"RDF.NS.SKOS","id":"hiddenLabel/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"hiddenLabel","module_id":"RDF.NS.SKOS","id":"hiddenLabel/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"hiddenLabel","module_id":"RDF.NS.SKOS","id":"hiddenLabel/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"hiddenLabel","module_id":"RDF.NS.SKOS","id":"hiddenLabel/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"historyNote","module_id":"RDF.NS.SKOS","id":"historyNote/0","doc":"<http://www.w3.org/2004/02/skos/core#historyNote>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"historyNote","module_id":"RDF.NS.SKOS","id":"historyNote/2","doc":"`RDF.Description` builder for `historyNote/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"historyNote","module_id":"RDF.NS.SKOS","id":"historyNote/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"historyNote","module_id":"RDF.NS.SKOS","id":"historyNote/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"historyNote","module_id":"RDF.NS.SKOS","id":"historyNote/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"historyNote","module_id":"RDF.NS.SKOS","id":"historyNote/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"inScheme","module_id":"RDF.NS.SKOS","id":"inScheme/0","doc":"<http://www.w3.org/2004/02/skos/core#inScheme>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"inScheme","module_id":"RDF.NS.SKOS","id":"inScheme/2","doc":"`RDF.Description` builder for `inScheme/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"inScheme","module_id":"RDF.NS.SKOS","id":"inScheme/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"inScheme","module_id":"RDF.NS.SKOS","id":"inScheme/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"inScheme","module_id":"RDF.NS.SKOS","id":"inScheme/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"inScheme","module_id":"RDF.NS.SKOS","id":"inScheme/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"mappingRelation","module_id":"RDF.NS.SKOS","id":"mappingRelation/0","doc":"<http://www.w3.org/2004/02/skos/core#mappingRelation>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"mappingRelation","module_id":"RDF.NS.SKOS","id":"mappingRelation/2","doc":"`RDF.Description` builder for `mappingRelation/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"mappingRelation","module_id":"RDF.NS.SKOS","id":"mappingRelation/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"mappingRelation","module_id":"RDF.NS.SKOS","id":"mappingRelation/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"mappingRelation","module_id":"RDF.NS.SKOS","id":"mappingRelation/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"mappingRelation","module_id":"RDF.NS.SKOS","id":"mappingRelation/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.SKOS","id":"member/0","doc":"<http://www.w3.org/2004/02/skos/core#member>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.SKOS","id":"member/2","doc":"`RDF.Description` builder for `member/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.SKOS","id":"member/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.SKOS","id":"member/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.SKOS","id":"member/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"member","module_id":"RDF.NS.SKOS","id":"member/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"memberList","module_id":"RDF.NS.SKOS","id":"memberList/0","doc":"<http://www.w3.org/2004/02/skos/core#memberList>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"memberList","module_id":"RDF.NS.SKOS","id":"memberList/2","doc":"`RDF.Description` builder for `memberList/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"memberList","module_id":"RDF.NS.SKOS","id":"memberList/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"memberList","module_id":"RDF.NS.SKOS","id":"memberList/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"memberList","module_id":"RDF.NS.SKOS","id":"memberList/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"memberList","module_id":"RDF.NS.SKOS","id":"memberList/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"narrowMatch","module_id":"RDF.NS.SKOS","id":"narrowMatch/0","doc":"<http://www.w3.org/2004/02/skos/core#narrowMatch>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"narrowMatch","module_id":"RDF.NS.SKOS","id":"narrowMatch/2","doc":"`RDF.Description` builder for `narrowMatch/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"narrowMatch","module_id":"RDF.NS.SKOS","id":"narrowMatch/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"narrowMatch","module_id":"RDF.NS.SKOS","id":"narrowMatch/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"narrowMatch","module_id":"RDF.NS.SKOS","id":"narrowMatch/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"narrowMatch","module_id":"RDF.NS.SKOS","id":"narrowMatch/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"narrower","module_id":"RDF.NS.SKOS","id":"narrower/0","doc":"<http://www.w3.org/2004/02/skos/core#narrower>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"narrower","module_id":"RDF.NS.SKOS","id":"narrower/2","doc":"`RDF.Description` builder for `narrower/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"narrower","module_id":"RDF.NS.SKOS","id":"narrower/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"narrower","module_id":"RDF.NS.SKOS","id":"narrower/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"narrower","module_id":"RDF.NS.SKOS","id":"narrower/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"narrower","module_id":"RDF.NS.SKOS","id":"narrower/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"narrowerTransitive","module_id":"RDF.NS.SKOS","id":"narrowerTransitive/0","doc":"<http://www.w3.org/2004/02/skos/core#narrowerTransitive>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"narrowerTransitive","module_id":"RDF.NS.SKOS","id":"narrowerTransitive/2","doc":"`RDF.Description` builder for `narrowerTransitive/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"narrowerTransitive","module_id":"RDF.NS.SKOS","id":"narrowerTransitive/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"narrowerTransitive","module_id":"RDF.NS.SKOS","id":"narrowerTransitive/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"narrowerTransitive","module_id":"RDF.NS.SKOS","id":"narrowerTransitive/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"narrowerTransitive","module_id":"RDF.NS.SKOS","id":"narrowerTransitive/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"notation","module_id":"RDF.NS.SKOS","id":"notation/0","doc":"<http://www.w3.org/2004/02/skos/core#notation>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"notation","module_id":"RDF.NS.SKOS","id":"notation/2","doc":"`RDF.Description` builder for `notation/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"notation","module_id":"RDF.NS.SKOS","id":"notation/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"notation","module_id":"RDF.NS.SKOS","id":"notation/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"notation","module_id":"RDF.NS.SKOS","id":"notation/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"notation","module_id":"RDF.NS.SKOS","id":"notation/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"note","module_id":"RDF.NS.SKOS","id":"note/0","doc":"<http://www.w3.org/2004/02/skos/core#note>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"note","module_id":"RDF.NS.SKOS","id":"note/2","doc":"`RDF.Description` builder for `note/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"note","module_id":"RDF.NS.SKOS","id":"note/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"note","module_id":"RDF.NS.SKOS","id":"note/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"note","module_id":"RDF.NS.SKOS","id":"note/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"note","module_id":"RDF.NS.SKOS","id":"note/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"prefLabel","module_id":"RDF.NS.SKOS","id":"prefLabel/0","doc":"<http://www.w3.org/2004/02/skos/core#prefLabel>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"prefLabel","module_id":"RDF.NS.SKOS","id":"prefLabel/2","doc":"`RDF.Description` builder for `prefLabel/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"prefLabel","module_id":"RDF.NS.SKOS","id":"prefLabel/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"prefLabel","module_id":"RDF.NS.SKOS","id":"prefLabel/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"prefLabel","module_id":"RDF.NS.SKOS","id":"prefLabel/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"prefLabel","module_id":"RDF.NS.SKOS","id":"prefLabel/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"related","module_id":"RDF.NS.SKOS","id":"related/0","doc":"<http://www.w3.org/2004/02/skos/core#related>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"related","module_id":"RDF.NS.SKOS","id":"related/2","doc":"`RDF.Description` builder for `related/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"related","module_id":"RDF.NS.SKOS","id":"related/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"related","module_id":"RDF.NS.SKOS","id":"related/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"related","module_id":"RDF.NS.SKOS","id":"related/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"related","module_id":"RDF.NS.SKOS","id":"related/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"relatedMatch","module_id":"RDF.NS.SKOS","id":"relatedMatch/0","doc":"<http://www.w3.org/2004/02/skos/core#relatedMatch>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"relatedMatch","module_id":"RDF.NS.SKOS","id":"relatedMatch/2","doc":"`RDF.Description` builder for `relatedMatch/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"relatedMatch","module_id":"RDF.NS.SKOS","id":"relatedMatch/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"relatedMatch","module_id":"RDF.NS.SKOS","id":"relatedMatch/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"relatedMatch","module_id":"RDF.NS.SKOS","id":"relatedMatch/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"relatedMatch","module_id":"RDF.NS.SKOS","id":"relatedMatch/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"scopeNote","module_id":"RDF.NS.SKOS","id":"scopeNote/0","doc":"<http://www.w3.org/2004/02/skos/core#scopeNote>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"scopeNote","module_id":"RDF.NS.SKOS","id":"scopeNote/2","doc":"`RDF.Description` builder for `scopeNote/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"scopeNote","module_id":"RDF.NS.SKOS","id":"scopeNote/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"scopeNote","module_id":"RDF.NS.SKOS","id":"scopeNote/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"scopeNote","module_id":"RDF.NS.SKOS","id":"scopeNote/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"scopeNote","module_id":"RDF.NS.SKOS","id":"scopeNote/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"semanticRelation","module_id":"RDF.NS.SKOS","id":"semanticRelation/0","doc":"<http://www.w3.org/2004/02/skos/core#semanticRelation>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"semanticRelation","module_id":"RDF.NS.SKOS","id":"semanticRelation/2","doc":"`RDF.Description` builder for `semanticRelation/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"semanticRelation","module_id":"RDF.NS.SKOS","id":"semanticRelation/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"semanticRelation","module_id":"RDF.NS.SKOS","id":"semanticRelation/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"semanticRelation","module_id":"RDF.NS.SKOS","id":"semanticRelation/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"semanticRelation","module_id":"RDF.NS.SKOS","id":"semanticRelation/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[],"object_type":"FunctionObject","name":"topConceptOf","module_id":"RDF.NS.SKOS","id":"topConceptOf/0","doc":"<http://www.w3.org/2004/02/skos/core#topConceptOf>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"topConceptOf","module_id":"RDF.NS.SKOS","id":"topConceptOf/2","doc":"`RDF.Description` builder for `topConceptOf/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"topConceptOf","module_id":"RDF.NS.SKOS","id":"topConceptOf/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"topConceptOf","module_id":"RDF.NS.SKOS","id":"topConceptOf/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"topConceptOf","module_id":"RDF.NS.SKOS","id":"topConceptOf/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:61","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"topConceptOf","module_id":"RDF.NS.SKOS","id":"topConceptOf/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"__uris__","module_id":"RDF.NS.XSD","id":"__uris__/0","doc":"Returns all known URIs of the vocabulary.\n","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"anyURI","module_id":"RDF.NS.XSD","id":"anyURI/0","doc":"<http://www.w3.org/2001/XMLSchema#anyURI>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"anyURI","module_id":"RDF.NS.XSD","id":"anyURI/2","doc":"`RDF.Description` builder for `anyURI/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"anyURI","module_id":"RDF.NS.XSD","id":"anyURI/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"anyURI","module_id":"RDF.NS.XSD","id":"anyURI/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"anyURI","module_id":"RDF.NS.XSD","id":"anyURI/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"anyURI","module_id":"RDF.NS.XSD","id":"anyURI/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"base64Binary","module_id":"RDF.NS.XSD","id":"base64Binary/0","doc":"<http://www.w3.org/2001/XMLSchema#base64Binary>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"base64Binary","module_id":"RDF.NS.XSD","id":"base64Binary/2","doc":"`RDF.Description` builder for `base64Binary/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"base64Binary","module_id":"RDF.NS.XSD","id":"base64Binary/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"base64Binary","module_id":"RDF.NS.XSD","id":"base64Binary/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"base64Binary","module_id":"RDF.NS.XSD","id":"base64Binary/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"base64Binary","module_id":"RDF.NS.XSD","id":"base64Binary/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"boolean","module_id":"RDF.NS.XSD","id":"boolean/0","doc":"<http://www.w3.org/2001/XMLSchema#boolean>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"boolean","module_id":"RDF.NS.XSD","id":"boolean/2","doc":"`RDF.Description` builder for `boolean/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"boolean","module_id":"RDF.NS.XSD","id":"boolean/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"boolean","module_id":"RDF.NS.XSD","id":"boolean/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"boolean","module_id":"RDF.NS.XSD","id":"boolean/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"boolean","module_id":"RDF.NS.XSD","id":"boolean/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"byte","module_id":"RDF.NS.XSD","id":"byte/0","doc":"<http://www.w3.org/2001/XMLSchema#byte>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"byte","module_id":"RDF.NS.XSD","id":"byte/2","doc":"`RDF.Description` builder for `byte/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"byte","module_id":"RDF.NS.XSD","id":"byte/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"byte","module_id":"RDF.NS.XSD","id":"byte/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"byte","module_id":"RDF.NS.XSD","id":"byte/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"byte","module_id":"RDF.NS.XSD","id":"byte/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"date","module_id":"RDF.NS.XSD","id":"date/0","doc":"<http://www.w3.org/2001/XMLSchema#date>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"date","module_id":"RDF.NS.XSD","id":"date/2","doc":"`RDF.Description` builder for `date/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"date","module_id":"RDF.NS.XSD","id":"date/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"date","module_id":"RDF.NS.XSD","id":"date/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"date","module_id":"RDF.NS.XSD","id":"date/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"date","module_id":"RDF.NS.XSD","id":"date/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"dateTime","module_id":"RDF.NS.XSD","id":"dateTime/0","doc":"<http://www.w3.org/2001/XMLSchema#dateTime>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"dateTime","module_id":"RDF.NS.XSD","id":"dateTime/2","doc":"`RDF.Description` builder for `dateTime/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"dateTime","module_id":"RDF.NS.XSD","id":"dateTime/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"dateTime","module_id":"RDF.NS.XSD","id":"dateTime/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"dateTime","module_id":"RDF.NS.XSD","id":"dateTime/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"dateTime","module_id":"RDF.NS.XSD","id":"dateTime/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"decimal","module_id":"RDF.NS.XSD","id":"decimal/0","doc":"<http://www.w3.org/2001/XMLSchema#decimal>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"decimal","module_id":"RDF.NS.XSD","id":"decimal/2","doc":"`RDF.Description` builder for `decimal/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"decimal","module_id":"RDF.NS.XSD","id":"decimal/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"decimal","module_id":"RDF.NS.XSD","id":"decimal/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"decimal","module_id":"RDF.NS.XSD","id":"decimal/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"decimal","module_id":"RDF.NS.XSD","id":"decimal/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"double","module_id":"RDF.NS.XSD","id":"double/0","doc":"<http://www.w3.org/2001/XMLSchema#double>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"double","module_id":"RDF.NS.XSD","id":"double/2","doc":"`RDF.Description` builder for `double/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"double","module_id":"RDF.NS.XSD","id":"double/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"double","module_id":"RDF.NS.XSD","id":"double/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"double","module_id":"RDF.NS.XSD","id":"double/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"double","module_id":"RDF.NS.XSD","id":"double/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"duration","module_id":"RDF.NS.XSD","id":"duration/0","doc":"<http://www.w3.org/2001/XMLSchema#duration>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"duration","module_id":"RDF.NS.XSD","id":"duration/2","doc":"`RDF.Description` builder for `duration/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"duration","module_id":"RDF.NS.XSD","id":"duration/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"duration","module_id":"RDF.NS.XSD","id":"duration/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"duration","module_id":"RDF.NS.XSD","id":"duration/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"duration","module_id":"RDF.NS.XSD","id":"duration/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"float","module_id":"RDF.NS.XSD","id":"float/0","doc":"<http://www.w3.org/2001/XMLSchema#float>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"float","module_id":"RDF.NS.XSD","id":"float/2","doc":"`RDF.Description` builder for `float/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"float","module_id":"RDF.NS.XSD","id":"float/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"float","module_id":"RDF.NS.XSD","id":"float/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"float","module_id":"RDF.NS.XSD","id":"float/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"float","module_id":"RDF.NS.XSD","id":"float/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"gDay","module_id":"RDF.NS.XSD","id":"gDay/0","doc":"<http://www.w3.org/2001/XMLSchema#gDay>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"gDay","module_id":"RDF.NS.XSD","id":"gDay/2","doc":"`RDF.Description` builder for `gDay/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"gDay","module_id":"RDF.NS.XSD","id":"gDay/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"gDay","module_id":"RDF.NS.XSD","id":"gDay/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"gDay","module_id":"RDF.NS.XSD","id":"gDay/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"gDay","module_id":"RDF.NS.XSD","id":"gDay/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"gMonth","module_id":"RDF.NS.XSD","id":"gMonth/0","doc":"<http://www.w3.org/2001/XMLSchema#gMonth>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"gMonth","module_id":"RDF.NS.XSD","id":"gMonth/2","doc":"`RDF.Description` builder for `gMonth/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"gMonth","module_id":"RDF.NS.XSD","id":"gMonth/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"gMonth","module_id":"RDF.NS.XSD","id":"gMonth/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"gMonth","module_id":"RDF.NS.XSD","id":"gMonth/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"gMonth","module_id":"RDF.NS.XSD","id":"gMonth/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"gMonthDay","module_id":"RDF.NS.XSD","id":"gMonthDay/0","doc":"<http://www.w3.org/2001/XMLSchema#gMonthDay>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"gMonthDay","module_id":"RDF.NS.XSD","id":"gMonthDay/2","doc":"`RDF.Description` builder for `gMonthDay/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"gMonthDay","module_id":"RDF.NS.XSD","id":"gMonthDay/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"gMonthDay","module_id":"RDF.NS.XSD","id":"gMonthDay/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"gMonthDay","module_id":"RDF.NS.XSD","id":"gMonthDay/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"gMonthDay","module_id":"RDF.NS.XSD","id":"gMonthDay/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"gYear","module_id":"RDF.NS.XSD","id":"gYear/0","doc":"<http://www.w3.org/2001/XMLSchema#gYear>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"gYear","module_id":"RDF.NS.XSD","id":"gYear/2","doc":"`RDF.Description` builder for `gYear/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"gYear","module_id":"RDF.NS.XSD","id":"gYear/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"gYear","module_id":"RDF.NS.XSD","id":"gYear/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"gYear","module_id":"RDF.NS.XSD","id":"gYear/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"gYear","module_id":"RDF.NS.XSD","id":"gYear/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"gYearMonth","module_id":"RDF.NS.XSD","id":"gYearMonth/0","doc":"<http://www.w3.org/2001/XMLSchema#gYearMonth>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"gYearMonth","module_id":"RDF.NS.XSD","id":"gYearMonth/2","doc":"`RDF.Description` builder for `gYearMonth/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"gYearMonth","module_id":"RDF.NS.XSD","id":"gYearMonth/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"gYearMonth","module_id":"RDF.NS.XSD","id":"gYearMonth/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"gYearMonth","module_id":"RDF.NS.XSD","id":"gYearMonth/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"gYearMonth","module_id":"RDF.NS.XSD","id":"gYearMonth/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"hexBinary","module_id":"RDF.NS.XSD","id":"hexBinary/0","doc":"<http://www.w3.org/2001/XMLSchema#hexBinary>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"hexBinary","module_id":"RDF.NS.XSD","id":"hexBinary/2","doc":"`RDF.Description` builder for `hexBinary/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"hexBinary","module_id":"RDF.NS.XSD","id":"hexBinary/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"hexBinary","module_id":"RDF.NS.XSD","id":"hexBinary/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"hexBinary","module_id":"RDF.NS.XSD","id":"hexBinary/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"hexBinary","module_id":"RDF.NS.XSD","id":"hexBinary/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"int","module_id":"RDF.NS.XSD","id":"int/0","doc":"<http://www.w3.org/2001/XMLSchema#int>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"int","module_id":"RDF.NS.XSD","id":"int/2","doc":"`RDF.Description` builder for `int/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"int","module_id":"RDF.NS.XSD","id":"int/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"int","module_id":"RDF.NS.XSD","id":"int/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"int","module_id":"RDF.NS.XSD","id":"int/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"int","module_id":"RDF.NS.XSD","id":"int/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"integer","module_id":"RDF.NS.XSD","id":"integer/0","doc":"<http://www.w3.org/2001/XMLSchema#integer>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"integer","module_id":"RDF.NS.XSD","id":"integer/2","doc":"`RDF.Description` builder for `integer/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"integer","module_id":"RDF.NS.XSD","id":"integer/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"integer","module_id":"RDF.NS.XSD","id":"integer/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"integer","module_id":"RDF.NS.XSD","id":"integer/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"integer","module_id":"RDF.NS.XSD","id":"integer/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"language","module_id":"RDF.NS.XSD","id":"language/0","doc":"<http://www.w3.org/2001/XMLSchema#language>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"language","module_id":"RDF.NS.XSD","id":"language/2","doc":"`RDF.Description` builder for `language/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"language","module_id":"RDF.NS.XSD","id":"language/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"language","module_id":"RDF.NS.XSD","id":"language/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"language","module_id":"RDF.NS.XSD","id":"language/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"language","module_id":"RDF.NS.XSD","id":"language/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"long","module_id":"RDF.NS.XSD","id":"long/0","doc":"<http://www.w3.org/2001/XMLSchema#long>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"long","module_id":"RDF.NS.XSD","id":"long/2","doc":"`RDF.Description` builder for `long/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"long","module_id":"RDF.NS.XSD","id":"long/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"long","module_id":"RDF.NS.XSD","id":"long/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"long","module_id":"RDF.NS.XSD","id":"long/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"long","module_id":"RDF.NS.XSD","id":"long/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"negativeInteger","module_id":"RDF.NS.XSD","id":"negativeInteger/0","doc":"<http://www.w3.org/2001/XMLSchema#negativeInteger>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"negativeInteger","module_id":"RDF.NS.XSD","id":"negativeInteger/2","doc":"`RDF.Description` builder for `negativeInteger/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"negativeInteger","module_id":"RDF.NS.XSD","id":"negativeInteger/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"negativeInteger","module_id":"RDF.NS.XSD","id":"negativeInteger/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"negativeInteger","module_id":"RDF.NS.XSD","id":"negativeInteger/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"negativeInteger","module_id":"RDF.NS.XSD","id":"negativeInteger/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"nonNegativeInteger","module_id":"RDF.NS.XSD","id":"nonNegativeInteger/0","doc":"<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"nonNegativeInteger","module_id":"RDF.NS.XSD","id":"nonNegativeInteger/2","doc":"`RDF.Description` builder for `nonNegativeInteger/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"nonNegativeInteger","module_id":"RDF.NS.XSD","id":"nonNegativeInteger/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"nonNegativeInteger","module_id":"RDF.NS.XSD","id":"nonNegativeInteger/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"nonNegativeInteger","module_id":"RDF.NS.XSD","id":"nonNegativeInteger/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"nonNegativeInteger","module_id":"RDF.NS.XSD","id":"nonNegativeInteger/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"nonPositiveInteger","module_id":"RDF.NS.XSD","id":"nonPositiveInteger/0","doc":"<http://www.w3.org/2001/XMLSchema#nonPositiveInteger>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"nonPositiveInteger","module_id":"RDF.NS.XSD","id":"nonPositiveInteger/2","doc":"`RDF.Description` builder for `nonPositiveInteger/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"nonPositiveInteger","module_id":"RDF.NS.XSD","id":"nonPositiveInteger/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"nonPositiveInteger","module_id":"RDF.NS.XSD","id":"nonPositiveInteger/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"nonPositiveInteger","module_id":"RDF.NS.XSD","id":"nonPositiveInteger/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"nonPositiveInteger","module_id":"RDF.NS.XSD","id":"nonPositiveInteger/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"normalizedString","module_id":"RDF.NS.XSD","id":"normalizedString/0","doc":"<http://www.w3.org/2001/XMLSchema#normalizedString>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"normalizedString","module_id":"RDF.NS.XSD","id":"normalizedString/2","doc":"`RDF.Description` builder for `normalizedString/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"normalizedString","module_id":"RDF.NS.XSD","id":"normalizedString/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"normalizedString","module_id":"RDF.NS.XSD","id":"normalizedString/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"normalizedString","module_id":"RDF.NS.XSD","id":"normalizedString/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"normalizedString","module_id":"RDF.NS.XSD","id":"normalizedString/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"positiveInteger","module_id":"RDF.NS.XSD","id":"positiveInteger/0","doc":"<http://www.w3.org/2001/XMLSchema#positiveInteger>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"positiveInteger","module_id":"RDF.NS.XSD","id":"positiveInteger/2","doc":"`RDF.Description` builder for `positiveInteger/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"positiveInteger","module_id":"RDF.NS.XSD","id":"positiveInteger/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"positiveInteger","module_id":"RDF.NS.XSD","id":"positiveInteger/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"positiveInteger","module_id":"RDF.NS.XSD","id":"positiveInteger/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"positiveInteger","module_id":"RDF.NS.XSD","id":"positiveInteger/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"short","module_id":"RDF.NS.XSD","id":"short/0","doc":"<http://www.w3.org/2001/XMLSchema#short>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"short","module_id":"RDF.NS.XSD","id":"short/2","doc":"`RDF.Description` builder for `short/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"short","module_id":"RDF.NS.XSD","id":"short/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"short","module_id":"RDF.NS.XSD","id":"short/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"short","module_id":"RDF.NS.XSD","id":"short/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"short","module_id":"RDF.NS.XSD","id":"short/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"string","module_id":"RDF.NS.XSD","id":"string/0","doc":"<http://www.w3.org/2001/XMLSchema#string>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"string","module_id":"RDF.NS.XSD","id":"string/2","doc":"`RDF.Description` builder for `string/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"string","module_id":"RDF.NS.XSD","id":"string/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"string","module_id":"RDF.NS.XSD","id":"string/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"string","module_id":"RDF.NS.XSD","id":"string/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"string","module_id":"RDF.NS.XSD","id":"string/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"time","module_id":"RDF.NS.XSD","id":"time/0","doc":"<http://www.w3.org/2001/XMLSchema#time>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"time","module_id":"RDF.NS.XSD","id":"time/2","doc":"`RDF.Description` builder for `time/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"time","module_id":"RDF.NS.XSD","id":"time/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"time","module_id":"RDF.NS.XSD","id":"time/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"time","module_id":"RDF.NS.XSD","id":"time/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"time","module_id":"RDF.NS.XSD","id":"time/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"token","module_id":"RDF.NS.XSD","id":"token/0","doc":"<http://www.w3.org/2001/XMLSchema#token>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"token","module_id":"RDF.NS.XSD","id":"token/2","doc":"`RDF.Description` builder for `token/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"token","module_id":"RDF.NS.XSD","id":"token/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"token","module_id":"RDF.NS.XSD","id":"token/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"token","module_id":"RDF.NS.XSD","id":"token/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"token","module_id":"RDF.NS.XSD","id":"token/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"unsignedByte","module_id":"RDF.NS.XSD","id":"unsignedByte/0","doc":"<http://www.w3.org/2001/XMLSchema#unsignedByte>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"unsignedByte","module_id":"RDF.NS.XSD","id":"unsignedByte/2","doc":"`RDF.Description` builder for `unsignedByte/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"unsignedByte","module_id":"RDF.NS.XSD","id":"unsignedByte/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"unsignedByte","module_id":"RDF.NS.XSD","id":"unsignedByte/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"unsignedByte","module_id":"RDF.NS.XSD","id":"unsignedByte/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"unsignedByte","module_id":"RDF.NS.XSD","id":"unsignedByte/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"unsignedInt","module_id":"RDF.NS.XSD","id":"unsignedInt/0","doc":"<http://www.w3.org/2001/XMLSchema#unsignedInt>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"unsignedInt","module_id":"RDF.NS.XSD","id":"unsignedInt/2","doc":"`RDF.Description` builder for `unsignedInt/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"unsignedInt","module_id":"RDF.NS.XSD","id":"unsignedInt/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"unsignedInt","module_id":"RDF.NS.XSD","id":"unsignedInt/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"unsignedInt","module_id":"RDF.NS.XSD","id":"unsignedInt/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"unsignedInt","module_id":"RDF.NS.XSD","id":"unsignedInt/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"unsignedLong","module_id":"RDF.NS.XSD","id":"unsignedLong/0","doc":"<http://www.w3.org/2001/XMLSchema#unsignedLong>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"unsignedLong","module_id":"RDF.NS.XSD","id":"unsignedLong/2","doc":"`RDF.Description` builder for `unsignedLong/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"unsignedLong","module_id":"RDF.NS.XSD","id":"unsignedLong/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"unsignedLong","module_id":"RDF.NS.XSD","id":"unsignedLong/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"unsignedLong","module_id":"RDF.NS.XSD","id":"unsignedLong/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"unsignedLong","module_id":"RDF.NS.XSD","id":"unsignedLong/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[],"object_type":"FunctionObject","name":"unsignedShort","module_id":"RDF.NS.XSD","id":"unsignedShort/0","doc":"<http://www.w3.org/2001/XMLSchema#unsignedShort>","arity":0},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["object",[],null]],"object_type":"FunctionObject","name":"unsignedShort","module_id":"RDF.NS.XSD","id":"unsignedShort/2","doc":"`RDF.Description` builder for `unsignedShort/0`","arity":2},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null]],"object_type":"FunctionObject","name":"unsignedShort","module_id":"RDF.NS.XSD","id":"unsignedShort/3","doc":false,"arity":3},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null]],"object_type":"FunctionObject","name":"unsignedShort","module_id":"RDF.NS.XSD","id":"unsignedShort/4","doc":false,"arity":4},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null]],"object_type":"FunctionObject","name":"unsignedShort","module_id":"RDF.NS.XSD","id":"unsignedShort/5","doc":false,"arity":5},{"type":"def","source":"lib/rdf/ns.ex:21","signature":[["subject",[],null],["o1",[],null],["o2",[],null],["o3",[],null],["o4",[],null],["o5",[],null]],"object_type":"FunctionObject","name":"unsignedShort","module_id":"RDF.NS.XSD","id":"unsignedShort/6","doc":false,"arity":6},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:1","signature":[],"object_type":"FunctionObject","name":"content_type","module_id":"RDF.NTriples","id":"content_type/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[],"object_type":"FunctionObject","name":"decoder","module_id":"RDF.NTriples","id":"decoder/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[],"object_type":"FunctionObject","name":"encoder","module_id":"RDF.NTriples","id":"encoder/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:1","signature":[],"object_type":"FunctionObject","name":"extension","module_id":"RDF.NTriples","id":"extension/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:1","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.NTriples","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[],"object_type":"FunctionObject","name":"options","module_id":"RDF.NTriples","id":"options/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["file",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_file","module_id":"RDF.NTriples","id":"read_file/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["file",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_file!","module_id":"RDF.NTriples","id":"read_file!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["content",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_string","module_id":"RDF.NTriples","id":"read_string/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["content",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_string!","module_id":"RDF.NTriples","id":"read_string!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["data",[],null],["path",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_file","module_id":"RDF.NTriples","id":"write_file/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["data",[],null],["path",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_file!","module_id":"RDF.NTriples","id":"write_file!/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["data",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_string","module_id":"RDF.NTriples","id":"write_string/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/serializations/ntriples.ex:18","signature":[["data",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_string!","module_id":"RDF.NTriples","id":"write_string!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/namespace.ex:21","signature":[["expr",[],null]],"object_type":"FunctionObject","name":"resolve_term","module_id":"RDF.Namespace","id":"resolve_term/1","doc":"Resolves a qualified term to an URI.\n\nIt determines a `RDF.Namespace` from the qualifier of the given term and\ndelegates to remaining part of the term to `__resolve_term__/1` of this\ndetermined namespace.\n","arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:43","signature":[["msg",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.Namespace.InvalidAliasError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:43","signature":[["exception",[],null]],"object_type":"FunctionObject","name":"message","module_id":"RDF.Namespace.InvalidAliasError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:39","signature":[["msg",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.Namespace.InvalidTermError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:39","signature":[["exception",[],null]],"object_type":"FunctionObject","name":"message","module_id":"RDF.Namespace.InvalidTermError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:35","signature":[["msg",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.Namespace.InvalidVocabBaseURIError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:35","signature":[["exception",[],null]],"object_type":"FunctionObject","name":"message","module_id":"RDF.Namespace.InvalidVocabBaseURIError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:47","signature":[["msg",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.Namespace.UndefinedTermError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:47","signature":[["exception",[],null]],"object_type":"FunctionObject","name":"message","module_id":"RDF.Namespace.UndefinedTermError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/quad.ex:34","signature":[["arg",[],"Elixir"]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Quad","id":"new/1","doc":"Creates a `RDF.Quad` with proper RDF values.\n\nAn error is raised when the given elements are not convertible to RDF values.\n\nNote: The `RDF.quad` function is a shortcut to this function.\n\n## Examples\n\n iex> RDF.Quad.new {\"http://example.com/S\", \"http://example.com/p\", 42, \"http://example.com/Graph\"}\n {~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42), ~I<http://example.com/Graph>}\n iex> RDF.Quad.new {EX.S, EX.p, 42, EX.Graph}\n {RDF.uri(\"http://example.com/S\"), RDF.uri(\"http://example.com/p\"), RDF.literal(42), RDF.uri(\"http://example.com/Graph\")}\n","arity":1},{"type":"def","source":"lib/rdf/quad.ex:11","signature":[["subject",[],null],["predicate",[],null],["object",[],null],["graph_context",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Quad","id":"new/4","doc":"Creates a `RDF.Quad` with proper RDF values.\n\nAn error is raised when the given elements are not convertible to RDF values.\n\nNote: The `RDF.quad` function is a shortcut to this function.\n\n## Examples\n\n iex> RDF.Quad.new(\"http://example.com/S\", \"http://example.com/p\", 42, \"http://example.com/Graph\")\n {~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42), ~I<http://example.com/Graph>}\n iex> RDF.Quad.new(EX.S, EX.p, 42, EX.Graph)\n {RDF.uri(\"http://example.com/S\"), RDF.uri(\"http://example.com/p\"), RDF.literal(42), RDF.uri(\"http://example.com/Graph\")}\n","arity":4},{"type":"def","source":"lib/rdf/exceptions.ex:26","signature":[["args",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.Quad.InvalidGraphContextError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:28","signature":[["map",[],"Elixir"]],"object_type":"FunctionObject","name":"message","module_id":"RDF.Quad.InvalidGraphContextError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/reader.ex:30","signature":[["decoder",[],null],["file",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_file","module_id":"RDF.Reader","id":"read_file/3","doc":"Reads and decodes a serialized graph or dataset from a file.\n\nIt returns an `{:ok, data}` tuple, with `data` being the deserialized graph or\ndataset, or `{:error, reason}` if an error occurs.\n","arity":3},{"type":"def","source":"lib/rdf/reader.ex:43","signature":[["decoder",[],null],["file",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_file!","module_id":"RDF.Reader","id":"read_file!/3","doc":"Reads and decodes a serialized graph or dataset from a file.\n\nAs opposed to `read_file`, it raises an exception if an error occurs.\n","arity":3},{"type":"def","source":"lib/rdf/reader.ex:11","signature":[["decoder",[],null],["content",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_string","module_id":"RDF.Reader","id":"read_string/3","doc":"Reads and decodes a serialized graph or dataset from a string.\n\nIt returns an `{:ok, data}` tuple, with `data` being the deserialized graph or\ndataset, or `{:error, reason}` if an error occurs.\n","arity":3},{"type":"def","source":"lib/rdf/reader.ex:21","signature":[["decoder",[],null],["content",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"read_string!","module_id":"RDF.Reader","id":"read_string!/3","doc":"Reads and decodes a serialized graph or dataset from a string.\n\nAs opposed to `read_string`, it raises an exception if an error occurs.\n","arity":3},{"type":"defmacro","source":"lib/rdf/sigils.ex:23","signature":[["arg",[],"Elixir"],["list",[],"Elixir"]],"object_type":"FunctionObject","name":"sigil_B","module_id":"RDF.Sigils","id":"sigil_B/2","doc":"Handles the sigil `~B` for blank nodes.\n\n## Examples\n\n iex> import RDF.Sigils\n iex> ~B<foo>\n RDF.bnode(\"foo\")\n\n","arity":2},{"type":"defmacro","source":"lib/rdf/sigils.ex:7","signature":[["arg",[],"Elixir"],["list",[],"Elixir"]],"object_type":"FunctionObject","name":"sigil_I","module_id":"RDF.Sigils","id":"sigil_I/2","doc":"Handles the sigil `~I` for IRIs.\n\nNote: The given IRI string is precompiled into an IRI struct.\n\n## Examples\n\n iex> import RDF.Sigils\n iex> ~I<http://example.com>\n RDF.uri(\"http://example.com\")\n\n","arity":2},{"type":"defmacro","source":"lib/rdf/sigils.ex:38","signature":[["value",[],null],["language",[],null]],"object_type":"FunctionObject","name":"sigil_L","module_id":"RDF.Sigils","id":"sigil_L/2","doc":"Handles the sigil `~L` for plain Literals.\n\nThe sigil modifier can be used to specify a language tag.\n\nNote: Languages with subtags are not supported.\n\n## Examples\n\n iex> import RDF.Sigils\n iex> ~L\"foo\"\n RDF.literal(\"foo\")\n iex> ~L\"foo\"en\n RDF.literal(\"foo\", language: \"en\")\n\n","arity":2},{"type":"def","source":"lib/rdf/statement.ex:21","signature":[["statement",[],null]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.Statement","id":"convert/1","doc":"Creates a `RDF.Statement` tuple with proper RDF values.\n\nAn error is raised when the given elements are not convertible to RDF values.\n\n## Examples\n\n iex> RDF.Statement.new {\"http://example.com/S\", \"http://example.com/p\", 42}\n {~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42)}\n iex> RDF.Statement.new {\"http://example.com/S\", \"http://example.com/p\", 42, \"http://example.com/Graph\"}\n {~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42), ~I<http://example.com/Graph>}\n","arity":1},{"type":"def","source":"lib/rdf/statement.ex:63","signature":[["uri",[],null]],"object_type":"FunctionObject","name":"convert_graph_name","module_id":"RDF.Statement","id":"convert_graph_name/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/statement.ex:55","signature":[["uri",[],null]],"object_type":"FunctionObject","name":"convert_object","module_id":"RDF.Statement","id":"convert_object/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/statement.ex:45","signature":[["uri",[],null]],"object_type":"FunctionObject","name":"convert_predicate","module_id":"RDF.Statement","id":"convert_predicate/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/statement.ex:37","signature":[["uri",[],null]],"object_type":"FunctionObject","name":"convert_subject","module_id":"RDF.Statement","id":"convert_subject/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.String","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.String","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.String","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.String","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.String","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["value",[],null],["",[],"Elixir"]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.String","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.String","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.String","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.String","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.String","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.String","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/string.ex:6","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.String","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["value",[],null],["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal","module_id":"RDF.Time","id":"build_literal/3","doc":null,"arity":3},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["lexical",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_lexical","module_id":"RDF.Time","id":"build_literal_by_lexical/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"build_literal_by_value","module_id":"RDF.Time","id":"build_literal_by_value/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"canonical","module_id":"RDF.Time","id":"canonical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"canonical_lexical","module_id":"RDF.Time","id":"canonical_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["value",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"convert","module_id":"RDF.Time","id":"convert/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[],"object_type":"FunctionObject","name":"id","module_id":"RDF.Time","id":"id/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["value",[],null]],"object_type":"FunctionObject","name":"invalid_lexical","module_id":"RDF.Time","id":"invalid_lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["literal",[],"Elixir"]],"object_type":"FunctionObject","name":"lexical","module_id":"RDF.Time","id":"lexical/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Time","id":"new/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["value",[],null],["\\\\",[],[["opts",[],null],["%{}",[["line",6]],[]]]]],"object_type":"FunctionObject","name":"new!","module_id":"RDF.Time","id":"new!/2","doc":null,"arity":2},{"type":"def","source":"lib/rdf/datatypes/time.ex:6","signature":[["arg1",[],"Elixir"]],"object_type":"FunctionObject","name":"valid?","module_id":"RDF.Time","id":"valid?/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/triple.ex:33","signature":[["arg",[],"Elixir"]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Triple","id":"new/1","doc":"Creates a `RDF.Triple` with proper RDF values.\n\nAn error is raised when the given elements are not convertible to RDF values.\n\nNote: The `RDF.triple` function is a shortcut to this function.\n\n## Examples\n\n iex> RDF.Triple.new {\"http://example.com/S\", \"http://example.com/p\", 42}\n {~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42)}\n iex> RDF.Triple.new {EX.S, EX.p, 42}\n {RDF.uri(\"http://example.com/S\"), RDF.uri(\"http://example.com/p\"), RDF.literal(42)}\n","arity":1},{"type":"def","source":"lib/rdf/triple.ex:11","signature":[["subject",[],null],["predicate",[],null],["object",[],null]],"object_type":"FunctionObject","name":"new","module_id":"RDF.Triple","id":"new/3","doc":"Creates a `RDF.Triple` with proper RDF values.\n\nAn error is raised when the given elements are not convertible to RDF values.\n\nNote: The `RDF.triple` function is a shortcut to this function.\n\n## Examples\n\n iex> RDF.Triple.new(\"http://example.com/S\", \"http://example.com/p\", 42)\n {~I<http://example.com/S>, ~I<http://example.com/p>, RDF.literal(42)}\n iex> RDF.Triple.new(EX.S, EX.p, 42)\n {RDF.uri(\"http://example.com/S\"), RDF.uri(\"http://example.com/p\"), RDF.literal(42)}\n","arity":3},{"type":"def","source":"lib/rdf/exceptions.ex:18","signature":[["args",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.Triple.InvalidPredicateError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:20","signature":[["map",[],"Elixir"]],"object_type":"FunctionObject","name":"message","module_id":"RDF.Triple.InvalidPredicateError","id":"message/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:10","signature":[["args",[],null]],"object_type":"FunctionObject","name":"exception","module_id":"RDF.Triple.InvalidSubjectError","id":"exception/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/exceptions.ex:12","signature":[["map",[],"Elixir"]],"object_type":"FunctionObject","name":"message","module_id":"RDF.Triple.InvalidSubjectError","id":"message/1","doc":null,"arity":1},{"type":"defmacro","source":"lib/rdf/vocabulary_namespace.ex:128","signature":[["terms",[],null],["base_uri",[],null]],"object_type":"FunctionObject","name":"define_vocab_terms","module_id":"RDF.Vocabulary.Namespace","id":"define_vocab_terms/2","doc":false,"arity":2},{"type":"defmacro","source":"lib/rdf/vocabulary_namespace.ex:25","signature":[["name",[],null],["opts",[],null]],"object_type":"FunctionObject","name":"defvocab","module_id":"RDF.Vocabulary.Namespace","id":"defvocab/2","doc":"Defines a `RDF.Namespace` module for a RDF vocabulary.\n","arity":2},{"type":"def","source":"lib/rdf/vocabulary_namespace.ex:288","signature":[],"object_type":"FunctionObject","name":"invalid_terms","module_id":"RDF.Vocabulary.Namespace","id":"invalid_terms/0","doc":null,"arity":0},{"type":"def","source":"lib/rdf/vocabulary_namespace.ex:588","signature":[["base_uri",[],null],["term",[],null]],"object_type":"FunctionObject","name":"term_to_uri","module_id":"RDF.Vocabulary.Namespace","id":"term_to_uri/2","doc":false,"arity":2},{"type":"def","source":"lib/rdf/writer.ex:30","signature":[["encoder",[],null],["data",[],null],["path",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_file","module_id":"RDF.Writer","id":"write_file/4","doc":"Encodes and writes a graph or dataset to a file.\n\nGeneral available serialization-independent options:\n\n- `:force` - If not set to `true`, an error is raised when the given file\n already exists (default: `false`)\n- `:file_mode` - A list with the Elixir `File.open` modes to be used fior writing\n (default: `[:utf8, :write]`)\n\nIt returns `:ok` if successfull or `{:error, reason}` if an error occurs.\n","arity":4},{"type":"def","source":"lib/rdf/writer.ex:48","signature":[["encoder",[],null],["data",[],null],["path",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_file!","module_id":"RDF.Writer","id":"write_file!/4","doc":"Encodes and writes a graph or dataset to a file.\n\nSee `write_file` for a list of available options.\n\nAs opposed to `write_file`, it raises an exception if an error occurs.\n","arity":4},{"type":"def","source":"lib/rdf/writer.ex:11","signature":[["encoder",[],null],["data",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_string","module_id":"RDF.Writer","id":"write_string/3","doc":"Encodes and writes a graph or dataset to a string.\n\nIt returns an `{:ok, string}` tuple, with `string` being the serialized graph or\ndataset, or `{:error, reason}` if an error occurs.\n","arity":3},{"type":"def","source":"lib/rdf/writer.ex:21","signature":[["encoder",[],null],["data",[],null],["\\\\",[],[["opts",[],null],[]]]],"object_type":"FunctionObject","name":"write_string!","module_id":"RDF.Writer","id":"write_string!/3","doc":"Encodes and writes a graph or dataset to a string.\n\nAs opposed to `write_string`, it raises an exception if an error occurs.\n","arity":3},{"type":"def","source":"lib/rdf/blank_node.ex:39","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"String.Chars.RDF.BlankNode","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/blank_node.ex:40","signature":[["blank_node",[],"Elixir"]],"object_type":"FunctionObject","name":"to_string","module_id":"String.Chars.RDF.BlankNode","id":"to_string/1","doc":null,"arity":1},{"type":"def","source":"lib/rdf/literal.ex:181","signature":[["atom",[],"Elixir"]],"object_type":"FunctionObject","name":"__impl__","module_id":"String.Chars.RDF.Literal","id":"__impl__/1","doc":false,"arity":1},{"type":"def","source":"lib/rdf/literal.ex:182","signature":[["literal",[],null]],"object_type":"FunctionObject","name":"to_string","module_id":"String.Chars.RDF.Literal","id":"to_string/1","doc":null,"arity":1}],"language":"elixir","git_repo_url":"https://github.com/marcelotto/rdf-ex.git","client_version":"0.5.6","client_name":"inch_ex","branch_name":"master","args":[]}