Examples in the docs use string-like literals: ```c++ "36893488147419103232"_U128 ``` But the library also offers number-like literals which are less disturbing for the casual users: ```c++ 36893488147419103232_U128 ``` The docs should use these numeric literals instead.
Examples in the docs use string-like literals:
"36893488147419103232"_U128But the library also offers number-like literals which are less disturbing for the casual users:
The docs should use these numeric literals instead.