View Source RDF.LangString (RDF.ex v1.0.0)

RDF.Literal.Datatype for rdf:langStrings.

Link to this section Summary

Functions

Returns the canonical lexical form of a RDF.Literal of this datatype.

Casts a datatype literal of one type into a datatype literal of another type.

Checks if the given literal has this datatype.

Checks if two datatype literals are equal in terms of the values of their value space.

Checks if a language tagged string literal or language tag matches a language range.

Creates a new RDF.Literal with this datatype and the given value and language.

Updates the value of a RDF.Literal without changing everything else.

Link to this section Types

@type t() :: %RDF.LangString{language: String.t(), value: String.t()}

Link to this section Functions

Link to this function

canonical_lexical(literal)

View Source

Returns the canonical lexical form of a RDF.Literal of this datatype.

Casts a datatype literal of one type into a datatype literal of another type.

Returns nil when the given arguments are not castable into this datatype or when the given argument is an invalid literal.

Implementations define the casting for a given value with the RDF.Literal.Datatype.do_cast/1 callback.

@spec compare(RDF.Literal.t() | any(), RDF.Literal.t() | any()) ::
  RDF.Literal.Datatype.comparison_result() | :indeterminate | nil

Checks if the given literal has this datatype.

Link to this function

equal_value?(left, right)

View Source

Checks if two datatype literals are equal in terms of the values of their value space.

Non-RDF.Literals are tried to be coerced via RDF.Literal.coerce/1 before comparison.

Returns nil when the given arguments are not comparable as literals of this datatype.

Invalid literals are only considered equal in this relation when both have the exact same datatype and the same attributes (lexical form, language etc.).

Implementations can customize this equivalence relation via the RDF.Literal.Datatype.do_equal_value_different_datatypes?/2 and RDF.Literal.Datatype.do_equal_value_different_datatypes?/2 callbacks.

Link to this function

match_language?(language_tag, language_range)

View Source
@spec match_language?(RDF.Literal.t() | t() | String.t(), String.t()) :: boolean()

Checks if a language tagged string literal or language tag matches a language range.

The check is performed per the basic filtering scheme defined in RFC4647 section 3.3.1. A language range is a basic language range per Matching of Language Tags in RFC4647 section 2.1. A language range of "*" matches any non-empty language-tag string.

see https://www.w3.org/TR/sparql11-query/#func-langMatches

Link to this function

new(value, language_or_opts \\ [])

View Source
@spec new(any(), String.t() | atom() | keyword()) :: RDF.Literal.t()

Creates a new RDF.Literal with this datatype and the given value and language.

Link to this function

update(literal, fun, opts \\ [])

View Source

Updates the value of a RDF.Literal without changing everything else.