Enum icu_plurals::PluralCategory[][src]

pub enum PluralCategory {
    Zero,
    One,
    Two,
    Few,
    Many,
    Other,
}

The plural categories are used to format messages with numeric placeholders, expressed as decimal numbers.

The fundamental rule for determining plural categories is the existence of minimal pairs: whenever two different numbers may require different versions of the same message, then the numbers have different plural categories.

All languages supported by ICU4X can match any number to one of the categories.

Examples

use icu::locid::macros::langid;
use icu::plurals::{PluralRules, PluralRuleType, PluralCategory};
use icu_provider::inv::InvariantDataProvider;

let lid = langid!("en");

let dp = InvariantDataProvider;

let pr = PluralRules::try_new(lid, &dp, PluralRuleType::Cardinal)
    .expect("Failed to construct a PluralRules struct.");

assert_eq!(pr.select(5_usize), PluralCategory::Other);

Variants

Zero

CLDR “zero” plural category. Used in Arabic and Latvian, among others.

Examples of numbers having this category:

  • 0 in Arabic (ar), Latvian (lv)
  • 10~20, 30, 40, 50, … in Latvian (lv)
One

CLDR “one” plural category. Signifies the singular form in many languages.

Examples of numbers having this category:

  • 0 in French (fr), Portuguese (pt), …
  • 1 in English (en) and most other languages
  • 2.1 in Filipino (fil), Croatian (hr), Latvian (lv), Serbian (sr)
  • 2, 3, 5, 7, 8, … in Filipino (fil)
Two

CLDR “two” plural category. Used in Arabic, Hebrew, and Slovenian, among others.

Examples of numbers having this category:

  • 2 in Arabic (ar), Hebrew (iw), Slovenian (sl)
  • 2.0 in Arabic (ar)
Few

CLDR “few” plural category. Used in Romanian, Polish, Russian, and others.

Examples of numbers having this category:

  • 0 in Romanian (ro)
  • 1.2 in Croatian (hr), Romanian (ro), Slovenian (sl), Serbian (sr)
  • 2 in Polish (pl), Russian (ru), Czech (cs), …
  • 5 in Arabic (ar), Lithuanian (lt), Romanian (ro)
Many

CLDR “many” plural category. Used in Polish, Russian, Ukrainian, and others.

Examples of numbers having this category:

  • 0 in Polish (pl)
  • 1.0 in Czech (cs), Slovak (sk)
  • 1.1 in Czech (cs), Lithuanian (lt), Slovak (sk)
  • 15 in Arabic (ar), Polish (pl), Russian (ru), Ukrainian (uk)
Other

CLDR “other” plural category, used as a catch-all. Each language supports it, and it is also used as a fail safe result for in case no better match can be identified.

In some languages, such as Japanese, Chinese, Korean, and Thai, this is the only plural category.

Examples of numbers having this category:

  • 0 in English (en), German (de), Spanish (es), …
  • 1 in Japanese (ja), Korean (ko), Chinese (zh), Thai (th), …
  • 2 in English (en), German (de), Spanish (es), …

Implementations

impl PluralCategory[src]

pub fn all() -> impl ExactSizeIterator<Item = &'static Self>[src]

Returns an ordered iterator over variants of Plural Categories.

Examples

use icu::plurals::PluralCategory;

let mut categories = PluralCategory::all();

assert_eq!(categories.next(), Some(&PluralCategory::Zero));
assert_eq!(categories.next(), Some(&PluralCategory::One));
assert_eq!(categories.next(), Some(&PluralCategory::Two));
assert_eq!(categories.next(), Some(&PluralCategory::Few));
assert_eq!(categories.next(), Some(&PluralCategory::Many));
assert_eq!(categories.next(), Some(&PluralCategory::Other));
assert_eq!(categories.next(), None);

Trait Implementations

impl Clone for PluralCategory[src]

impl Copy for PluralCategory[src]

impl Debug for PluralCategory[src]

impl Eq for PluralCategory[src]

impl Hash for PluralCategory[src]

impl PartialEq<PluralCategory> for PluralCategory[src]

impl StructuralEq for PluralCategory[src]

impl StructuralPartialEq for PluralCategory[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> ErasedDataStruct for T where
    T: Clone + Debug + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.