View Source RDF.XSD.Facets.Length behaviour (RDF.ex v2.0.0)
RDF.XSD.Facet for length.
length is the number of units of length, where units of length varies
depending on the type that is being derived from.
The value of length must be a nonNegativeInteger.
see https://www.w3.org/TR/xmlschema11-2/datatypes.html#rf-length
Summary
Callbacks
Returns the value of this RDF.XSD.Facet on specific RDF.XSD.Datatype.
Validates if a value and lexical conforms with a concrete facet_constraint_value for this RDF.XSD.Facet.
Functions
Checks if a value and lexical conforms with the length_conform?/3 implementation on the datatype RDF.XSD.Datatype.
Callbacks
@callback length() :: non_neg_integer() | nil
Returns the value of this RDF.XSD.Facet on specific RDF.XSD.Datatype.
length_conform?(facet_constraint_value, value, uncanonical_lexical)
View Source@callback length_conform?( facet_constraint_value :: any(), value :: any(), RDF.XSD.Datatype.uncanonical_lexical() ) :: boolean()
Validates if a value and lexical conforms with a concrete facet_constraint_value for this RDF.XSD.Facet.
This function must be implemented on a RDF.XSD.Datatype using this RDF.XSD.Facet.
Functions
@spec conform?(RDF.XSD.Datatype.t(), any(), RDF.XSD.Datatype.uncanonical_lexical()) :: boolean()
Checks if a value and lexical conforms with the length_conform?/3 implementation on the datatype RDF.XSD.Datatype.