Back to Bazel

Int

docs/versions/6.0.0/rules/lib/int.mdx

9.2.0564 B
Original Source
<html devsite> <head> <meta name="project_path" value="/_project.yaml"> <meta name="book_path" value="/versions/6.0.0/_book.yaml"> </head> <body> <h1 class="page-title" id="modules.int">int</h1> <!-- {% raw %} -->

The type of integers in Starlark. Starlark integers may be of any magnitude; arithmetic is exact. Examples of integer expressions:

<pre class="language-python">153 0x2A # hexadecimal literal 0o54 # octal literal 23 * 2 + 5 100 / -7 100 % -7 # -5 (unlike in some other languages) int("18") </pre> </body> </html> <!-- {% endraw %} -->