Rand Stats

Intl::LanguageTaggish

zef:guifa

Intl::LanguageTaggish

A role to be implemented by different representations of a language/locale identifier. It provides for the following three methods/attributes:

Raison d’être

While there are not many language tag standards, there are several in common use. This role aims to define some common features to aid their interaction.

A bcp47 method should provide conversion into a BCP-47-compliant string. For example, Apple allows "English" or "Spanish" as valid identifiers for its .lproj identifiers. So a theoretical AppleLProj class that does LanguageTaggish would output English for .language, but for bcp47, would output en.

It is expected that class implementing LanguageTaggish will add additional methods and attributes. In keeping with tradition established by other language tag frameworks (in particular ICU), requested values not present should return the empty string.
The role handles this by default via its FALLBACK method.

In addition, each LanguageTaggish implementor is expected to also provide a method `

Coercions into LanguageTaggish

Classes implementing LanguageTaggish register themselves on the first use statement to be available for coercion. Optimally, programmers in international environments will know what tag is needed, however, when it's not possible, the COERCE method aims to do its best. In priority order, classes judge whether they can handle the tag, and if so, will do the coercion. This approach is not (as of v0.1) finalized and may be adjusted.

Note that if you use Intl::LanguageTag, you will get the BCP-47 implementation, as it is currently the most common format.