Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/src/manual/integers-and-floating-point-numbers.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ determining storage size of a literal. So `0x01` is a `UInt8` while `0x0001` is

That allows the user to control the size.

Values which cannot be stored in `UInt128` cannot be written as such literals.
Unsigned literals (starting with `0x`) which are too big to fit in a `UInt128` object are
interpreted as `BigInt`.

Binary, octal, and hexadecimal literals may be signed by a `-` immediately preceding the
unsigned literal. They produce an unsigned integer of the same size as the unsigned literal
Expand Down