IMPORTANT: The Bazel docs have moved! Please update your bookmark to https://bazel.build/rules/lib/int
You can read about the migration, and let us know what you think.
Extensions >
API reference >
int
int
The type of integers in Starlark. Starlark integers may be of any magnitude; arithmetic is exact. Examples of integer expressions:153
0x2A # hexadecimal literal
0o54 # octal literal
23 * 2 + 5
100 / -7
100 % -7 # -5 (unlike in some other languages)
int("18")