package plural
import "github.com/nicksnyder/go-i18n/v2/internal/plural"
Package plural provides support for pluralizing messages according to CLDR rules http://cldr.unicode.org/index/cldr-spec/plural-rules
Index ¶
- type Form
- type Operands
- func NewOperands(number interface{}) (*Operands, error)
- func (o *Operands) NEqualsAny(any ...int64) bool
- func (o *Operands) NInRange(from, to int64) bool
- func (o *Operands) NModEqualsAny(mod int64, any ...int64) bool
- func (o *Operands) NModInRange(mod, from, to int64) bool
- type Rule
- type Rules
Types ¶
type Form ¶
type Form string
Form represents a language pluralization form as defined here: http://cldr.unicode.org/index/cldr-spec/plural-rules
const ( Invalid Form = "" Zero Form = "zero" One Form = "one" Two Form = "two" Few Form = "few" Many Form = "many" Other Form = "other" )
All defined plural forms.
type Operands ¶
type Operands struct { N float64 // absolute value of the source number (integer and decimals) I int64 // integer digits of n V int64 // number of visible fraction digits in n, with trailing zeros W int64 // number of visible fraction digits in n, without trailing zeros F int64 // visible fractional digits in n, with trailing zeros T int64 // visible fractional digits in n, without trailing zeros C int64 // compact decimal exponent value: exponent of the power of 10 used in compact decimal formatting. }
Operands is a representation of http://unicode.org/reports/tr35/tr35-numbers.html#Operands If there is a compact decimal exponent value C, then the N, I, V, W, F, and T values are computed after shifting the decimal point in the original by the ‘c’ value. So for 1.2c3, the values are the same as those of 1200: i=1200 and f=0. Similarly, 1.2005c3 has i=1200 and f=5 (corresponding to 1200.5).
func NewOperands ¶
NewOperands returns the operands for number.
func (*Operands) NEqualsAny ¶
NEqualsAny returns true if o represents an integer equal to any of the arguments.
func (*Operands) NInRange ¶
NInRange returns true if o represents an integer in the closed interval [from, to].
func (*Operands) NModEqualsAny ¶
NModEqualsAny returns true if o represents an integer equal to any of the arguments modulo mod.
func (*Operands) NModInRange ¶
NModInRange returns true if o represents an integer in the closed interval [from, to] modulo mod.
type Rule ¶
Rule defines the CLDR plural rules for a language. http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html http://unicode.org/reports/tr35/tr35-numbers.html#Operands
type Rules ¶
Rules is a set of plural rules by language tag.
func DefaultRules ¶
func DefaultRules() Rules
DefaultRules returns a map of Rules generated from CLDR language data.
func (Rules) Rule ¶
Rule returns the closest matching plural rule for the language tag or nil if no rule could be found.
Source Files ¶
doc.go form.go operands.go rule.go rule_gen.go rules.go
Directories ¶
Path | Synopsis |
---|---|
internal/plural/codegen |
- Version
- v2.5.1 (latest)
- Published
- Feb 2, 2025
- Platform
- linux/amd64
- Imports
- 4 packages
- Last checked
- 1 month ago –
Tools for package owners.