Nix numeric builtins

  • add e1 e2 - self-explanatory
  • bitAnd e1 e2 - bitwise AND
  • bitOr e1 e2 - bitwise OR
  • bitXor e1 e2 - bitwise XOR
  • div e1 e2 - quotient of e1 and e2
  • isInt e - true if e is an integer, otherwise false
  • isFloat e - true if e is a float, otherwise false
  • lessThan e1 e2 - true if e1 < e2, otherwise false
  • mul e1 e2 - self-explanatory
  • sub e1 e2 - self-explanatory