Skip to content

Commit 6c602b6

Browse files
committed
[ratio.syn] Use digit separators to make large numbers more readable.
1 parent 45aba42 commit 6c602b6

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

source/utilities.tex

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10296,26 +10296,26 @@
1029610296
template <class R1, class R2> struct ratio_greater_equal;
1029710297

1029810298
// \ref{ratio.si}, convenience SI typedefs
10299-
typedef ratio<1, 1000000000000000000000000> yocto; // \seebelow
10300-
typedef ratio<1, 1000000000000000000000> zepto; // \seebelow
10301-
typedef ratio<1, 1000000000000000000> atto;
10302-
typedef ratio<1, 1000000000000000> femto;
10303-
typedef ratio<1, 1000000000000> pico;
10304-
typedef ratio<1, 1000000000> nano;
10305-
typedef ratio<1, 1000000> micro;
10306-
typedef ratio<1, 1000> milli;
10307-
typedef ratio<1, 100> centi;
10308-
typedef ratio<1, 10> deci;
10309-
typedef ratio< 10, 1> deca;
10310-
typedef ratio< 100, 1> hecto;
10311-
typedef ratio< 1000, 1> kilo;
10312-
typedef ratio< 1000000, 1> mega;
10313-
typedef ratio< 1000000000, 1> giga;
10314-
typedef ratio< 1000000000000, 1> tera;
10315-
typedef ratio< 1000000000000000, 1> peta;
10316-
typedef ratio< 1000000000000000000, 1> exa;
10317-
typedef ratio< 1000000000000000000000, 1> zetta; // \seebelow
10318-
typedef ratio<1000000000000000000000000, 1> yotta; // \seebelow
10299+
typedef ratio<1, 1'000'000'000'000'000'000'000'000> yocto; // \seebelow
10300+
typedef ratio<1, 1'000'000'000'000'000'000'000> zepto; // \seebelow
10301+
typedef ratio<1, 1'000'000'000'000'000'000> atto;
10302+
typedef ratio<1, 1'000'000'000'000'000> femto;
10303+
typedef ratio<1, 1'000'000'000'000> pico;
10304+
typedef ratio<1, 1'000'000'000> nano;
10305+
typedef ratio<1, 1'000'000> micro;
10306+
typedef ratio<1, 1'000> milli;
10307+
typedef ratio<1, 100> centi;
10308+
typedef ratio<1, 10> deci;
10309+
typedef ratio< 10, 1> deca;
10310+
typedef ratio< 100, 1> hecto;
10311+
typedef ratio< 1'000, 1> kilo;
10312+
typedef ratio< 1'000'000, 1> mega;
10313+
typedef ratio< 1'000'000'000, 1> giga;
10314+
typedef ratio< 1'000'000'000'000, 1> tera;
10315+
typedef ratio< 1'000'000'000'000'000, 1> peta;
10316+
typedef ratio< 1'000'000'000'000'000'000, 1> exa;
10317+
typedef ratio< 1'000'000'000'000'000'000'000, 1> zetta; // \seebelow
10318+
typedef ratio<1'000'000'000'000'000'000'000'000, 1> yotta; // \seebelow
1031910319
}
1032010320
\end{codeblock}
1032110321

0 commit comments

Comments
 (0)