1
- namespace Jeffijoe . MessageFormat . MetadataGenerator . Plural . Parsing . AST
1
+ namespace Jeffijoe . MessageFormat . MetadataGenerator . Plural . Parsing . AST ;
2
+
3
+ public enum OperandSymbol
2
4
{
3
- public enum OperandSymbol
4
- {
5
- /// <summary>
6
- /// n - absolute value of the source number.
7
- /// </summary>
8
- AbsoluteValue ,
9
-
10
- /// <summary>
11
- /// i - integer digits of n.
12
- /// </summary>
13
- IntegerDigits ,
14
-
15
- /// <summary>
16
- /// v - number of visible fraction digits in n, with trailing zeros.
17
- /// </summary>
18
- VisibleFractionDigitNumber ,
19
-
20
- /// <summary>
21
- /// w - number of visible fraction digits in n, without trailing zeros.
22
- /// </summary>
23
- VisibleFractionDigitNumberWithoutTrailingZeroes ,
24
-
25
- /// <summary>
26
- /// f - number of visible fraction digits in n, with trailing zeros.
27
- /// </summary>
28
- VisibleFractionDigits ,
29
-
30
- /// <summary>
31
- /// t - visible fraction digits in n, without trailing zeros.
32
- /// </summary>
33
- VisibleFractionDigitsWithoutTrailingZeroes ,
34
-
35
- /// <summary>
36
- /// c - compact decimal exponent value: exponent of the power of 10 used in compact decimal formatting.
37
- /// </summary>
38
- ExponentC ,
39
-
40
- /// <summary>
41
- /// e - currently, synonym for ‘c’. however, may be redefined in the future.
42
- /// </summary>
43
- ExponentE ,
44
- }
45
- }
5
+ /// <summary>
6
+ /// n - absolute value of the source number.
7
+ /// </summary>
8
+ AbsoluteValue ,
9
+
10
+ /// <summary>
11
+ /// i - integer digits of n.
12
+ /// </summary>
13
+ IntegerDigits ,
14
+
15
+ /// <summary>
16
+ /// v - number of visible fraction digits in n, with trailing zeros.
17
+ /// </summary>
18
+ VisibleFractionDigitNumber ,
19
+
20
+ /// <summary>
21
+ /// w - number of visible fraction digits in n, without trailing zeros.
22
+ /// </summary>
23
+ VisibleFractionDigitNumberWithoutTrailingZeroes ,
24
+
25
+ /// <summary>
26
+ /// f - number of visible fraction digits in n, with trailing zeros.
27
+ /// </summary>
28
+ VisibleFractionDigits ,
29
+
30
+ /// <summary>
31
+ /// t - visible fraction digits in n, without trailing zeros.
32
+ /// </summary>
33
+ VisibleFractionDigitsWithoutTrailingZeroes ,
34
+
35
+ /// <summary>
36
+ /// c - compact decimal exponent value: exponent of the power of 10 used in compact decimal formatting.
37
+ /// </summary>
38
+ ExponentC ,
39
+
40
+ /// <summary>
41
+ /// e - currently, synonym for ‘c’. however, may be redefined in the future.
42
+ /// </summary>
43
+ ExponentE ,
44
+ }
0 commit comments