[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2019-12-13 UTC."],[],[],null,["[rules](/docs/reference/rules/rules).Integer \ninterface static\n\nPrimitive type representing a signed 64-bit integer value.\n\nIntegers can be compared using the `==`, `!=`,\n`\u003e`, `\u003c`, `\u003e=` and\n`\u003c=` operators.\n\nIntegers support the arithmetic operators `+`, `-`,\n`/`, `*`, and `%`.\n\nIntegers can be negated using the `-` prefix.\n\nInteger values will be coerced to type [rules.Float](/docs/reference/rules/rules.Float) when used in\ncomparison or arithmetic operations with a float value.\n\nString and float values can be converted to integers using the\n`int()` function: \n\n```text\nint(\"2\") == 2\nint(2.0) == 2\n```"]]