Lines Matching defs:nd

1 package nd  package
12 type nd struct { struct
13 locale string
14 pluralsCardinal []locales.PluralRule
15 pluralsOrdinal []locales.PluralRule
16 pluralsRange []locales.PluralRule
17 decimal string
18 group string
19 minus string
20 percent string
21 perMille string
22 timeSeparator string
23 inifinity string
24 currencies []string // idx = enum of currency code
25 currencyNegativePrefix string
26 currencyNegativeSuffix string
27 monthsAbbreviated []string
28 monthsNarrow []string
29 monthsWide []string
30 daysAbbreviated []string
31 daysNarrow []string
32 daysShort []string
33 daysWide []string
34 periodsAbbreviated []string
35 periodsNarrow []string
36 periodsShort []string
37 periodsWide []string
38 erasAbbreviated []string
39 erasNarrow []string
40 erasWide []string
41 timezones map[string]string
69 func (nd *nd) Locale() string {
74 func (nd *nd) PluralsCardinal() []locales.PluralRule {
79 func (nd *nd) PluralsOrdinal() []locales.PluralRule {
84 func (nd *nd) PluralsRange() []locales.PluralRule {
89 func (nd *nd) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
101 func (nd *nd) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
106 func (nd *nd) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
111 func (nd *nd) MonthAbbreviated(month time.Month) string {
116 func (nd *nd) MonthsAbbreviated() []string {
121 func (nd *nd) MonthNarrow(month time.Month) string {
126 func (nd *nd) MonthsNarrow() []string {
131 func (nd *nd) MonthWide(month time.Month) string {
136 func (nd *nd) MonthsWide() []string {
141 func (nd *nd) WeekdayAbbreviated(weekday time.Weekday) string {
146 func (nd *nd) WeekdaysAbbreviated() []string {
151 func (nd *nd) WeekdayNarrow(weekday time.Weekday) string {
156 func (nd *nd) WeekdaysNarrow() []string {
161 func (nd *nd) WeekdayShort(weekday time.Weekday) string {
166 func (nd *nd) WeekdaysShort() []string {
171 func (nd *nd) WeekdayWide(weekday time.Weekday) string {
176 func (nd *nd) WeekdaysWide() []string {
181 func (nd *nd) Decimal() string {
186 func (nd *nd) Group() string {
191 func (nd *nd) Minus() string {
196 func (nd *nd) FmtNumber(num float64, v uint64) string {
203 func (nd *nd) FmtPercent(num float64, v uint64) string {
208 func (nd *nd) FmtCurrency(num float64, v uint64, currency currency.Type) string {
266 func (nd *nd) FmtAccounting(num float64, v uint64, currency currency.Type) string {
335 func (nd *nd) FmtDateShort(t time.Time) string {
364 func (nd *nd) FmtDateMedium(t time.Time) string {
383 func (nd *nd) FmtDateLong(t time.Time) string {
402 func (nd *nd) FmtDateFull(t time.Time) string {
423 func (nd *nd) FmtTimeShort(t time.Time) string {
444 func (nd *nd) FmtTimeMedium(t time.Time) string {
472 func (nd *nd) FmtTimeLong(t time.Time) string {
504 func (nd *nd) FmtTimeFull(t time.Time) string {