icu_plurals/provider/rules/runtime/
mod.rs

1// This file is part of ICU4X. For terms of use, please see the file
2// called LICENSE at the top level of the ICU4X source tree
3// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
4
5//! Runtime version of the Plural Rules parser, AST and serializer.
6//!
7//! <div class="stab unstable">
8//! 🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
9//! including in SemVer minor releases. In particular, the `DataProvider` implementations are only
10//! guaranteed to match with this version's `*_unstable` providers. Use with caution.
11//! </div>
12
13/// <div class="stab unstable">
14/// 🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
15/// including in SemVer minor releases. In particular, the `DataProvider` implementations are only
16/// guaranteed to match with this version's `*_unstable` providers. Use with caution.
17/// </div>
18pub mod ast;
19pub(crate) mod resolver;
20
21pub use resolver::test_rule;