@@ -442,6 +442,20 @@ declare_named! {
442442 /// > ०, १, २, ३, ४, ५, ६, ७, ८, ९, १०, ११
443443 Devanagari = "devanagari" ( "१" ) ,
444444
445+ /// Decimal positional notation using
446+ /// [Tibetan numerals](https://en.wikipedia.org/wiki/Tibetan_numerals).
447+ ///
448+ /// ## Representable Numbers
449+ ///
450+ /// All non-negative integers can be represented.
451+ ///
452+ /// ## Example
453+ ///
454+ /// The first twelve non-negative integers are represented as follows:
455+ ///
456+ /// > ༠, ༡, ༢, ༣, ༤, ༥, ༦, ༧, ༨, ༩, ༡༠, ༡༡
457+ Tibetan = "tibetan" ( "༡" ) ,
458+
445459 /// Decimal positional notation using
446460 /// [Bengali numerals](https://en.wikipedia.org/wiki/Bengali_numerals).
447461 ///
@@ -816,6 +830,10 @@ impl NamedNumeralSystem {
816830 '०' , '१' , '२' , '३' , '४' , '५' , '६' , '७' , '८' , '९' ,
817831 ] ) ,
818832
833+ Self :: Tibetan => NumeralSystem :: Positional ( & [
834+ '༠' , '༡' , '༢' , '༣' , '༤' , '༥' , '༦' , '༧' , '༨' , '༩' ,
835+ ] ) ,
836+
819837 Self :: Bengali => NumeralSystem :: Positional ( & [
820838 '০' , '১' , '২' , '৩' , '৪' , '৫' , '৬' , '৭' , '৮' , '৯' ,
821839 ] ) ,
@@ -1419,6 +1437,7 @@ mod tests {
14191437 NamedNumeralSystem :: EasternArabic => 277754701051910363703826860323053920831 ,
14201438 NamedNumeralSystem :: Persian => 6232158096065129450489636457808686806 ,
14211439 NamedNumeralSystem :: Devanagari => 327133969362282954753636774557232534052 ,
1440+ NamedNumeralSystem :: Tibetan => 87580519645280744681237273097105390953 ,
14221441 NamedNumeralSystem :: Bengali => 79096832028418218544110224478554962928 ,
14231442 NamedNumeralSystem :: BengaliLetters => 269999388716378396079918080520770981179 ,
14241443 NamedNumeralSystem :: Symbols => 88780534058354093087932015985325954737 ,
0 commit comments