lib.types: Fix biggest/smallest supported int comment (#519853)

This commit is contained in:
Johannes Kirschbauer
2026-05-14 10:16:50 +00:00
committed by GitHub
+2 -2
View File
@@ -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;