The cartesian product of lists #
Main definitions #
List.pi
: Cartesian product of lists indexed by a list.
def
List.Pi.cons
{ι : Type u_1}
[DecidableEq ι]
{α : ι → Sort u_2}
(i : ι)
(l : List ι)
(a : α i)
(f : (j : ι) → j ∈ l → α j)
(j : ι)
:
Given α : ι → Sort*
, a list l
and a term i
, as well as a term a : α i
and a
function f
such that f j : α j
for all j
in l
, Pi.cons a f
is a function g
such
that g k : α k
for all k
in i :: l
.
Equations
- List.Pi.cons i l a f = Multiset.Pi.cons (↑l) i a f
Instances For
@[simp]
theorem
Multiset.Pi.cons_coe
{ι : Type u_1}
[DecidableEq ι]
{α : ι → Sort u_2}
{i : ι}
{l : List ι}
(a : α i)
(f : (j : ι) → j ∈ l → α j)
: