diff options
author | gumi <git@gumi.ca> | 2020-05-03 23:17:07 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-05-07 16:09:29 -0400 |
commit | fc77e102b35e38a375dd0f419bf490b7fe4c379c (patch) | |
tree | b22dc030568007817738d1a98b214c1c52b12684 | |
parent | 6b8746543cf8f6e83a5850a2b6496920da9ef92a (diff) | |
download | hercules-fc77e102b35e38a375dd0f419bf490b7fe4c379c.tar.gz hercules-fc77e102b35e38a375dd0f419bf490b7fe4c379c.tar.bz2 hercules-fc77e102b35e38a375dd0f419bf490b7fe4c379c.tar.xz hercules-fc77e102b35e38a375dd0f419bf490b7fe4c379c.zip |
update the constants documentation for number separators
-rw-r--r-- | db/constants.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf index b2bc94516..1770ab06f 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -40,6 +40,13 @@ constants_db: { hexadecimal: 0x1337 // prefix: 0x octal: 0o1337 // prefix: 0o binary: 0b101101 // prefix: 0b + + Underscores can also be used as visual separators for digit grouping purposes: + 2_147_483_647 + 0x7FFF_FFFF + + Keep in mind that number literals cannot start or end with a separator and no + more than one separator can be used in a row (so 12_3___456 is illegal). **************************************************************************/ comment__: "Weekdays" |