Cldr Numbers v1.4.2 Cldr.Rbnf.NumberSystem View Source

Functions to implement the number system rule-based-number-format rules of CLDR.

These rules are defined only on the “root” locale and represent specialised number formatting.

The standard public API for RBNF is via the Cldr.Number.to_string/2 function.

The functions on this module are defined at compile time based upon the RBNF rules defined in the Unicode CLDR data repository. Available rules are identified by:

iex> Cldr.Rbnf.NumberSystem.rule_sets Cldr.Locale.new!("root")
[:tamil, :roman_upper, :roman_lower, :hebrew_item, :hebrew_0_99, :hebrew,
:greek_upper, :greek_lower, :georgian, :ethiopic_p1, :ethiopic,
:cyrillic_lower_1_10, :cyrillic_lower, :armenian_upper, :armenian_lower]

A rule can then be invoked on an available rule_set. For example

iex> Cldr.Rbnf.NumberSystem.roman_upper 123, Cldr.Locale.new!("root")
"CXXIII"

This call is equivalent to the call through the public API of:

iex> Cldr.Number.to_string 123, format: :roman
{:ok, "CXXIII"}

Link to this section Summary

Link to this section Functions

Link to this function armenian_lower(number, locale) View Source
Link to this function armenian_upper(number, locale) View Source
Link to this function cyrillic_lower(number, locale) View Source
Link to this function cyrillic_lower_1_10(number, locale) View Source
Link to this function cyrillic_lower_final(number, language_tag) View Source
Link to this function cyrillic_lower_post(number, language_tag) View Source
Link to this function cyrillic_lower_thousands(number, language_tag) View Source
Link to this function ethiopic(number, locale) View Source
Link to this function ethiopic_p(number, language_tag) View Source
Link to this function ethiopic_p1(number, locale) View Source
Link to this function ethiopic_p2(number, language_tag) View Source
Link to this function ethiopic_p3(number, language_tag) View Source
Link to this function georgian(number, locale) View Source
Link to this function greek_lower(number, locale) View Source
Link to this function greek_numeral_majuscules(number, language_tag) View Source
Link to this function greek_numeral_minuscules(number, language_tag) View Source
Link to this function greek_upper(number, locale) View Source
Link to this function hebrew_0_99(number, locale) View Source
Link to this function hebrew_item(number, locale) View Source
Link to this function hebrew_thousands(number, language_tag) View Source
Link to this function roman_lower(number, locale) View Source
Link to this function roman_upper(number, locale) View Source
Link to this function tamil_thousands(number, language_tag) View Source