The type List.Vector
represents lists with fixed length.
TODO: The API of List.Vector
is quite incomplete relative to Vector
,
and in particular does not use x[i]
(that is GetElem
notation) as the preferred accessor.
Any combination of reducing the use of List.Vector
in Mathlib, or modernising its API,
would be welcome.
List.Vector α n
is the type of lists of length n
with elements of type α
.
Note that there is also Vector α n
in the root namespace,
which is the type of arrays of length n
with elements of type α
.
Typically, if you are doing programming or verification, you will primarily use Vector α n
,
and if you are doing mathematics, you may want to use List.Vector α n
instead.
Instances For
Equations
The empty vector with elements of type α
Equations
- List.Vector.nil = ⟨[], ⋯⟩
Instances For
The first element of a vector with length at least 1
.
Instances For
The head of a vector obtained by prepending is the element prepended.
The tail of a vector, with an empty vector having empty tail.
Instances For
The tail of a vector obtained by prepending is the vector prepended. to
Appending a vector to another.
Instances For
Map a vector under a function.
Instances For
Mapping two vectors under a curried function of two variables.
Instances For
Vector obtained by repeating an element.
Instances For
Drop i
elements from a vector of length n
; we can have i > n
.
Instances For
Take i
elements from a vector of length n
; we can have i > n
.
Instances For
Remove the element at position i
from a vector of length n
.
Instances For
Create a vector from another with a provably equal length.
Instances For
Shift Primitives #
shiftLeftFill v i
is the vector obtained by left-shifting v
i
times and padding with the
fill
argument. If v.length < i
then this will return replicate n fill
.
Equations
Instances For
shiftRightFill v i
is the vector obtained by right-shifting v
i
times and padding with the
fill
argument. If v.length < i
then this will return replicate n fill
.
Equations
Instances For
Basic Theorems #
A nil vector maps to a nil list.
The length of the list to which a vector of length n
maps is n
.