Preliminaries #
toList #
empty #
size #
push #
mkArray #
L[i] and L[i]? #
mem #
isEmpty #
Decidability of bounded quantifiers #
Equations
- Array.instDecidableForallForallMemOfDecidablePred = decidable_of_iff (∀ (i : Nat) (h : i < xs.size), p xs[i]) ⋯
any / all #
Variant of anyM_toArray
with a side condition on stop
.
Variant of allM_toArray
with a side condition on stop
.
Variant of any_beq
with ==
reversed.
Variant of all_bne
with !=
reversed.
Instances For
set #
setIfInBounds #
Instances For
Instances For
Instances For
Simplifies a normal form from get!
BEq #
isEqv #
map #
map_id_fun'
differs from map_id_fun
by representing the identity function as a lambda, rather than id
.
Use this as induction ass using array₂_induction
on a hypothesis of the form ass : Array (Array α)
.
The hypothesis ass
will be replaced with a hypothesis ass : List (List α)
,
and former appearances of ass
in the goal will be replaced with (ass.map List.toArray).toArray
.
Use this as induction ass using array₃_induction
on a hypothesis of the form ass : Array (Array (Array α))
.
The hypothesis ass
will be replaced with a hypothesis ass : List (List (List α))
,
and former appearances of ass
in the goal will be replaced with
((ass.map (fun xs => xs.map List.toArray)).map List.toArray).toArray
.
filter #
filterMap #
singleton #
append #
flatten #
flatMap #
mkArray #
Variant of mkArray_succ
that prepends a
at the beginning of the array.
Variant of map_const
using a lambda rather than Function.const
.
Preliminaries about swap
needed for reverse
. #
reverse #
extract #
Equations
Instances For
foldlM and foldrM #
Variant of foldlM_push
with a side condition for the stop
argument.
foldl / foldr #
Variant of foldl_reverse
with a side condition for the stop
argument.
Variant of foldr_reverse
with a side condition for the start
argument.
We can prove that two folds over the same array are related (by some arbitrary relation) if we know that the initial elements are related and the folding function, for each element of the array, preserves the relation.
We can prove that two folds over the same array are related (by some arbitrary relation) if we know that the initial elements are related and the folding function, for each element of the array, preserves the relation.
Content below this point has not yet been aligned with List
.
sum #
A more efficient version of arr.toList.reverse
.
Equations
- arr.toListRev = Array.foldl (fun (l : List α) (t : α) => t :: l) [] arr
Instances For
uset #
get #
ofFn #
mem #
get lemmas #
Equations
Instances For
Equations
Instances For
shrink #
forIn #
map #
modify #
contains #
swap #
eraseIdx #
isPrefixOf #
zipWith #
findSomeM?, findM?, findSome?, find? #
More theorems about List.toArray
, followed by an Array
operation. #
Our goal is to have simp
"pull List.toArray
outwards" as much as possible.