mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
lib.types: Fix biggest/smallest supported int comment
This commit is contained in:
parent
1945a76ddb
commit
1aa1947487
1 changed files with 2 additions and 2 deletions
|
|
@ -501,8 +501,8 @@ rec {
|
|||
};
|
||||
u8 = unsign 8 256;
|
||||
u16 = unsign 16 65536;
|
||||
# the biggest int Nix accepts is 2^63 - 1 (9223372036854775808)
|
||||
# the smallest int Nix accepts is -2^63 (-9223372036854775807)
|
||||
# the biggest int Nix accepts is 2^63 - 1 (9223372036854775807)
|
||||
# the smallest int Nix accepts is -2^63 (-9223372036854775808)
|
||||
u32 = unsign 32 4294967296;
|
||||
# u64 = unsign 64 18446744073709551616;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue