Documentation

Init.Data.UInt.Basic

@[extern lean_uint8_add]
def UInt8.add (a : UInt8) (b : UInt8) :
Equations
  • a.add b = { toBitVec := a.toBitVec + b.toBitVec }
Instances For
    @[extern lean_uint8_sub]
    def UInt8.sub (a : UInt8) (b : UInt8) :
    Equations
    • a.sub b = { toBitVec := a.toBitVec - b.toBitVec }
    Instances For
      @[extern lean_uint8_mul]
      def UInt8.mul (a : UInt8) (b : UInt8) :
      Equations
      • a.mul b = { toBitVec := a.toBitVec * b.toBitVec }
      Instances For
        @[extern lean_uint8_div]
        def UInt8.div (a : UInt8) (b : UInt8) :
        Equations
        • a.div b = { toBitVec := a.toBitVec.udiv b.toBitVec }
        Instances For
          @[extern lean_uint8_mod]
          def UInt8.mod (a : UInt8) (b : UInt8) :
          Equations
          • a.mod b = { toBitVec := a.toBitVec.umod b.toBitVec }
          Instances For
            @[deprecated UInt8.mod]
            def UInt8.modn (a : UInt8) (n : Nat) :
            Equations
            • a.modn n = { toBitVec := (a.val.modn n) }
            Instances For
              @[extern lean_uint8_land]
              def UInt8.land (a : UInt8) (b : UInt8) :
              Equations
              • a.land b = { toBitVec := a.toBitVec &&& b.toBitVec }
              Instances For
                @[extern lean_uint8_lor]
                def UInt8.lor (a : UInt8) (b : UInt8) :
                Equations
                • a.lor b = { toBitVec := a.toBitVec ||| b.toBitVec }
                Instances For
                  @[extern lean_uint8_xor]
                  def UInt8.xor (a : UInt8) (b : UInt8) :
                  Equations
                  • a.xor b = { toBitVec := a.toBitVec ^^^ b.toBitVec }
                  Instances For
                    @[extern lean_uint8_shift_left]
                    def UInt8.shiftLeft (a : UInt8) (b : UInt8) :
                    Equations
                    • a.shiftLeft b = { toBitVec := a.toBitVec <<< (b.mod 8).toBitVec }
                    Instances For
                      @[extern lean_uint8_shift_right]
                      Equations
                      • a.shiftRight b = { toBitVec := a.toBitVec >>> (b.mod 8).toBitVec }
                      Instances For
                        def UInt8.lt (a : UInt8) (b : UInt8) :
                        Equations
                        • a.lt b = (a.toBitVec < b.toBitVec)
                        Instances For
                          def UInt8.le (a : UInt8) (b : UInt8) :
                          Equations
                          • a.le b = (a.toBitVec b.toBitVec)
                          Instances For
                            Equations
                            Equations
                            Equations
                            Equations
                            Equations
                            instance instLTUInt8 :
                            Equations
                            instance instLEUInt8 :
                            Equations
                            @[extern lean_uint8_complement]
                            Equations
                            • a.complement = { toBitVec := ~~~a.toBitVec }
                            Instances For
                              Equations
                              @[extern lean_uint8_dec_lt]
                              def UInt8.decLt (a : UInt8) (b : UInt8) :
                              Decidable (a < b)
                              Equations
                              Instances For
                                @[extern lean_uint8_dec_le]
                                def UInt8.decLe (a : UInt8) (b : UInt8) :
                                Equations
                                Instances For
                                  instance instDecidableLtUInt8 (a : UInt8) (b : UInt8) :
                                  Decidable (a < b)
                                  Equations
                                  instance instDecidableLeUInt8 (a : UInt8) (b : UInt8) :
                                  Equations
                                  Equations
                                  Equations
                                  @[extern lean_uint16_add]
                                  def UInt16.add (a : UInt16) (b : UInt16) :
                                  Equations
                                  • a.add b = { toBitVec := a.toBitVec + b.toBitVec }
                                  Instances For
                                    @[extern lean_uint16_sub]
                                    def UInt16.sub (a : UInt16) (b : UInt16) :
                                    Equations
                                    • a.sub b = { toBitVec := a.toBitVec - b.toBitVec }
                                    Instances For
                                      @[extern lean_uint16_mul]
                                      def UInt16.mul (a : UInt16) (b : UInt16) :
                                      Equations
                                      • a.mul b = { toBitVec := a.toBitVec * b.toBitVec }
                                      Instances For
                                        @[extern lean_uint16_div]
                                        def UInt16.div (a : UInt16) (b : UInt16) :
                                        Equations
                                        • a.div b = { toBitVec := a.toBitVec.udiv b.toBitVec }
                                        Instances For
                                          @[extern lean_uint16_mod]
                                          def UInt16.mod (a : UInt16) (b : UInt16) :
                                          Equations
                                          • a.mod b = { toBitVec := a.toBitVec.umod b.toBitVec }
                                          Instances For
                                            @[deprecated UInt16.mod]
                                            def UInt16.modn (a : UInt16) (n : Nat) :
                                            Equations
                                            • a.modn n = { toBitVec := (a.val.modn n) }
                                            Instances For
                                              @[extern lean_uint16_land]
                                              def UInt16.land (a : UInt16) (b : UInt16) :
                                              Equations
                                              • a.land b = { toBitVec := a.toBitVec &&& b.toBitVec }
                                              Instances For
                                                @[extern lean_uint16_lor]
                                                def UInt16.lor (a : UInt16) (b : UInt16) :
                                                Equations
                                                • a.lor b = { toBitVec := a.toBitVec ||| b.toBitVec }
                                                Instances For
                                                  @[extern lean_uint16_xor]
                                                  def UInt16.xor (a : UInt16) (b : UInt16) :
                                                  Equations
                                                  • a.xor b = { toBitVec := a.toBitVec ^^^ b.toBitVec }
                                                  Instances For
                                                    @[extern lean_uint16_shift_left]
                                                    Equations
                                                    • a.shiftLeft b = { toBitVec := a.toBitVec <<< (b.mod 16).toBitVec }
                                                    Instances For
                                                      @[extern lean_uint16_shift_right]
                                                      Equations
                                                      • a.shiftRight b = { toBitVec := a.toBitVec >>> (b.mod 16).toBitVec }
                                                      Instances For
                                                        def UInt16.lt (a : UInt16) (b : UInt16) :
                                                        Equations
                                                        • a.lt b = (a.toBitVec < b.toBitVec)
                                                        Instances For
                                                          def UInt16.le (a : UInt16) (b : UInt16) :
                                                          Equations
                                                          • a.le b = (a.toBitVec b.toBitVec)
                                                          Instances For
                                                            Equations
                                                            Equations
                                                            @[extern lean_uint16_complement]
                                                            Equations
                                                            • a.complement = { toBitVec := ~~~a.toBitVec }
                                                            Instances For
                                                              @[extern lean_uint16_dec_lt]
                                                              def UInt16.decLt (a : UInt16) (b : UInt16) :
                                                              Decidable (a < b)
                                                              Equations
                                                              Instances For
                                                                @[extern lean_uint16_dec_le]
                                                                def UInt16.decLe (a : UInt16) (b : UInt16) :
                                                                Equations
                                                                Instances For
                                                                  instance instDecidableLtUInt16 (a : UInt16) (b : UInt16) :
                                                                  Decidable (a < b)
                                                                  Equations
                                                                  instance instDecidableLeUInt16 (a : UInt16) (b : UInt16) :
                                                                  Equations
                                                                  Equations
                                                                  Equations
                                                                  @[extern lean_uint32_add]
                                                                  def UInt32.add (a : UInt32) (b : UInt32) :
                                                                  Equations
                                                                  • a.add b = { toBitVec := a.toBitVec + b.toBitVec }
                                                                  Instances For
                                                                    @[extern lean_uint32_sub]
                                                                    def UInt32.sub (a : UInt32) (b : UInt32) :
                                                                    Equations
                                                                    • a.sub b = { toBitVec := a.toBitVec - b.toBitVec }
                                                                    Instances For
                                                                      @[extern lean_uint32_mul]
                                                                      def UInt32.mul (a : UInt32) (b : UInt32) :
                                                                      Equations
                                                                      • a.mul b = { toBitVec := a.toBitVec * b.toBitVec }
                                                                      Instances For
                                                                        @[extern lean_uint32_div]
                                                                        def UInt32.div (a : UInt32) (b : UInt32) :
                                                                        Equations
                                                                        • a.div b = { toBitVec := a.toBitVec.udiv b.toBitVec }
                                                                        Instances For
                                                                          @[extern lean_uint32_mod]
                                                                          def UInt32.mod (a : UInt32) (b : UInt32) :
                                                                          Equations
                                                                          • a.mod b = { toBitVec := a.toBitVec.umod b.toBitVec }
                                                                          Instances For
                                                                            @[deprecated UInt32.mod]
                                                                            def UInt32.modn (a : UInt32) (n : Nat) :
                                                                            Equations
                                                                            • a.modn n = { toBitVec := (a.val.modn n) }
                                                                            Instances For
                                                                              @[extern lean_uint32_land]
                                                                              def UInt32.land (a : UInt32) (b : UInt32) :
                                                                              Equations
                                                                              • a.land b = { toBitVec := a.toBitVec &&& b.toBitVec }
                                                                              Instances For
                                                                                @[extern lean_uint32_lor]
                                                                                def UInt32.lor (a : UInt32) (b : UInt32) :
                                                                                Equations
                                                                                • a.lor b = { toBitVec := a.toBitVec ||| b.toBitVec }
                                                                                Instances For
                                                                                  @[extern lean_uint32_xor]
                                                                                  def UInt32.xor (a : UInt32) (b : UInt32) :
                                                                                  Equations
                                                                                  • a.xor b = { toBitVec := a.toBitVec ^^^ b.toBitVec }
                                                                                  Instances For
                                                                                    @[extern lean_uint32_shift_left]
                                                                                    Equations
                                                                                    • a.shiftLeft b = { toBitVec := a.toBitVec <<< (b.mod 32).toBitVec }
                                                                                    Instances For
                                                                                      @[extern lean_uint32_shift_right]
                                                                                      Equations
                                                                                      • a.shiftRight b = { toBitVec := a.toBitVec >>> (b.mod 32).toBitVec }
                                                                                      Instances For
                                                                                        @[extern lean_uint32_complement]
                                                                                        Equations
                                                                                        • a.complement = { toBitVec := ~~~a.toBitVec }
                                                                                        Instances For
                                                                                          @[extern lean_uint64_add]
                                                                                          def UInt64.add (a : UInt64) (b : UInt64) :
                                                                                          Equations
                                                                                          • a.add b = { toBitVec := a.toBitVec + b.toBitVec }
                                                                                          Instances For
                                                                                            @[extern lean_uint64_sub]
                                                                                            def UInt64.sub (a : UInt64) (b : UInt64) :
                                                                                            Equations
                                                                                            • a.sub b = { toBitVec := a.toBitVec - b.toBitVec }
                                                                                            Instances For
                                                                                              @[extern lean_uint64_mul]
                                                                                              def UInt64.mul (a : UInt64) (b : UInt64) :
                                                                                              Equations
                                                                                              • a.mul b = { toBitVec := a.toBitVec * b.toBitVec }
                                                                                              Instances For
                                                                                                @[extern lean_uint64_div]
                                                                                                def UInt64.div (a : UInt64) (b : UInt64) :
                                                                                                Equations
                                                                                                • a.div b = { toBitVec := a.toBitVec.udiv b.toBitVec }
                                                                                                Instances For
                                                                                                  @[extern lean_uint64_mod]
                                                                                                  def UInt64.mod (a : UInt64) (b : UInt64) :
                                                                                                  Equations
                                                                                                  • a.mod b = { toBitVec := a.toBitVec.umod b.toBitVec }
                                                                                                  Instances For
                                                                                                    @[deprecated UInt64.mod]
                                                                                                    def UInt64.modn (a : UInt64) (n : Nat) :
                                                                                                    Equations
                                                                                                    • a.modn n = { toBitVec := (a.val.modn n) }
                                                                                                    Instances For
                                                                                                      @[extern lean_uint64_land]
                                                                                                      def UInt64.land (a : UInt64) (b : UInt64) :
                                                                                                      Equations
                                                                                                      • a.land b = { toBitVec := a.toBitVec &&& b.toBitVec }
                                                                                                      Instances For
                                                                                                        @[extern lean_uint64_lor]
                                                                                                        def UInt64.lor (a : UInt64) (b : UInt64) :
                                                                                                        Equations
                                                                                                        • a.lor b = { toBitVec := a.toBitVec ||| b.toBitVec }
                                                                                                        Instances For
                                                                                                          @[extern lean_uint64_xor]
                                                                                                          def UInt64.xor (a : UInt64) (b : UInt64) :
                                                                                                          Equations
                                                                                                          • a.xor b = { toBitVec := a.toBitVec ^^^ b.toBitVec }
                                                                                                          Instances For
                                                                                                            @[extern lean_uint64_shift_left]
                                                                                                            Equations
                                                                                                            • a.shiftLeft b = { toBitVec := a.toBitVec <<< (b.mod 64).toBitVec }
                                                                                                            Instances For
                                                                                                              @[extern lean_uint64_shift_right]
                                                                                                              Equations
                                                                                                              • a.shiftRight b = { toBitVec := a.toBitVec >>> (b.mod 64).toBitVec }
                                                                                                              Instances For
                                                                                                                def UInt64.lt (a : UInt64) (b : UInt64) :
                                                                                                                Equations
                                                                                                                • a.lt b = (a.toBitVec < b.toBitVec)
                                                                                                                Instances For
                                                                                                                  def UInt64.le (a : UInt64) (b : UInt64) :
                                                                                                                  Equations
                                                                                                                  • a.le b = (a.toBitVec b.toBitVec)
                                                                                                                  Instances For
                                                                                                                    Equations
                                                                                                                    Equations
                                                                                                                    @[extern lean_uint64_complement]
                                                                                                                    Equations
                                                                                                                    • a.complement = { toBitVec := ~~~a.toBitVec }
                                                                                                                    Instances For
                                                                                                                      @[extern lean_bool_to_uint64]
                                                                                                                      Equations
                                                                                                                      • b.toUInt64 = if b = true then 1 else 0
                                                                                                                      Instances For
                                                                                                                        @[extern lean_uint64_dec_lt]
                                                                                                                        def UInt64.decLt (a : UInt64) (b : UInt64) :
                                                                                                                        Decidable (a < b)
                                                                                                                        Equations
                                                                                                                        Instances For
                                                                                                                          @[extern lean_uint64_dec_le]
                                                                                                                          def UInt64.decLe (a : UInt64) (b : UInt64) :
                                                                                                                          Equations
                                                                                                                          Instances For
                                                                                                                            instance instDecidableLtUInt64 (a : UInt64) (b : UInt64) :
                                                                                                                            Decidable (a < b)
                                                                                                                            Equations
                                                                                                                            instance instDecidableLeUInt64 (a : UInt64) (b : UInt64) :
                                                                                                                            Equations
                                                                                                                            Equations
                                                                                                                            Equations
                                                                                                                            @[extern lean_usize_mul]
                                                                                                                            def USize.mul (a : USize) (b : USize) :
                                                                                                                            Equations
                                                                                                                            • a.mul b = { toBitVec := a.toBitVec * b.toBitVec }
                                                                                                                            Instances For
                                                                                                                              @[extern lean_usize_div]
                                                                                                                              def USize.div (a : USize) (b : USize) :
                                                                                                                              Equations
                                                                                                                              • a.div b = { toBitVec := a.toBitVec / b.toBitVec }
                                                                                                                              Instances For
                                                                                                                                @[extern lean_usize_mod]
                                                                                                                                def USize.mod (a : USize) (b : USize) :
                                                                                                                                Equations
                                                                                                                                • a.mod b = { toBitVec := a.toBitVec % b.toBitVec }
                                                                                                                                Instances For
                                                                                                                                  @[deprecated USize.mod]
                                                                                                                                  def USize.modn (a : USize) (n : Nat) :
                                                                                                                                  Equations
                                                                                                                                  • a.modn n = { toBitVec := (a.val.modn n) }
                                                                                                                                  Instances For
                                                                                                                                    @[extern lean_usize_land]
                                                                                                                                    def USize.land (a : USize) (b : USize) :
                                                                                                                                    Equations
                                                                                                                                    • a.land b = { toBitVec := a.toBitVec &&& b.toBitVec }
                                                                                                                                    Instances For
                                                                                                                                      @[extern lean_usize_lor]
                                                                                                                                      def USize.lor (a : USize) (b : USize) :
                                                                                                                                      Equations
                                                                                                                                      • a.lor b = { toBitVec := a.toBitVec ||| b.toBitVec }
                                                                                                                                      Instances For
                                                                                                                                        @[extern lean_usize_xor]
                                                                                                                                        def USize.xor (a : USize) (b : USize) :
                                                                                                                                        Equations
                                                                                                                                        • a.xor b = { toBitVec := a.toBitVec ^^^ b.toBitVec }
                                                                                                                                        Instances For
                                                                                                                                          @[extern lean_usize_shift_left]
                                                                                                                                          def USize.shiftLeft (a : USize) (b : USize) :
                                                                                                                                          Equations
                                                                                                                                          Instances For
                                                                                                                                            @[extern lean_usize_shift_right]
                                                                                                                                            Equations
                                                                                                                                            Instances For
                                                                                                                                              @[extern lean_uint32_to_usize]
                                                                                                                                              Equations
                                                                                                                                              Instances For
                                                                                                                                                @[extern lean_usize_to_uint32]
                                                                                                                                                Equations
                                                                                                                                                • a.toUInt32 = a.toNat.toUInt32
                                                                                                                                                Instances For
                                                                                                                                                  Equations
                                                                                                                                                  Equations
                                                                                                                                                  Equations
                                                                                                                                                  @[extern lean_usize_complement]
                                                                                                                                                  Equations
                                                                                                                                                  • a.complement = { toBitVec := ~~~a.toBitVec }
                                                                                                                                                  Instances For
                                                                                                                                                    Equations
                                                                                                                                                    Equations
                                                                                                                                                    Equations