Documentation
Init
.
Data
.
Int
.
Bitwise
.
Lemmas
Search
return to top
source
Imports
Init.Data.Int.Bitwise.Basic
Init.Data.Int.DivMod.Lemmas
Init.Data.Nat.Bitwise.Lemmas
Imported by
Init.Data.Int.Bitwise
Init.Data.BitVec.Lemmas
Int
.
shiftRight_eq
Int
.
natCast_shiftRight
Int
.
negSucc_shiftRight
Int
.
shiftRight_add
Int
.
shiftRight_eq_div_pow
Int
.
zero_shiftRight
Int
.
shiftRight_zero
Int
.
le_shiftRight_of_nonpos
Int
.
shiftRight_le_of_nonneg
Int
.
le_shiftRight_of_nonneg
Int
.
shiftRight_le_of_nonpos
source
theorem
Int
.
shiftRight_eq
(
n
:
Int
)
(
s
:
Nat
)
:
n
>>>
s
=
n
.
shiftRight
s
source
@[simp]
theorem
Int
.
natCast_shiftRight
(
n
s
:
Nat
)
:
↑
n
>>>
s
=
↑(
n
>>>
s
)
source
@[simp]
theorem
Int
.
negSucc_shiftRight
(
m
n
:
Nat
)
:
negSucc
m
>>>
n
=
negSucc
(
m
>>>
n
)
source
theorem
Int
.
shiftRight_add
(
i
:
Int
)
(
m
n
:
Nat
)
:
i
>>>
(
m
+
n
)
=
i
>>>
m
>>>
n
source
theorem
Int
.
shiftRight_eq_div_pow
(
m
:
Int
)
(
n
:
Nat
)
:
m
>>>
n
=
m
/
↑(
2
^
n
)
source
@[simp]
theorem
Int
.
zero_shiftRight
(
n
:
Nat
)
:
0
>>>
n
=
0
source
@[simp]
theorem
Int
.
shiftRight_zero
(
n
:
Int
)
:
n
>>>
0
=
n
source
theorem
Int
.
le_shiftRight_of_nonpos
{
n
:
Int
}
{
s
:
Nat
}
(
h
:
n
≤
0
)
:
n
≤
n
>>>
s
source
theorem
Int
.
shiftRight_le_of_nonneg
{
n
:
Int
}
{
s
:
Nat
}
(
h
:
0
≤
n
)
:
n
>>>
s
≤
n
source
theorem
Int
.
le_shiftRight_of_nonneg
{
n
:
Int
}
{
s
:
Nat
}
(
h
:
0
≤
n
)
:
0
≤
n
>>>
s
source
theorem
Int
.
shiftRight_le_of_nonpos
{
n
:
Int
}
{
s
:
Nat
}
(
h
:
n
≤
0
)
:
n
>>>
s
≤
0