RDF.Sigils.sigil_L

You're seeing just the macro sigil_L, go back to RDF.Sigils module for more information.
Link to this macro

sigil_L(value, language)

View Source (macro)

Handles the sigil ~L for plain Literals.

The sigil modifier can be used to specify a language tag.

Note: Languages with subtags are not supported.

Examples

iex> import RDF.Sigils
iex> ~L"foo"
RDF.literal("foo")
iex> ~L"foo"en
RDF.literal("foo", language: "en")