aboutsummaryrefslogtreecommitdiff
path: root/hott/More_List.thy
blob: a216987a769ad8a00be5e2105ee8db661774c63c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
theory More_List
imports
  Spartan.List
  Nat

begin

section \<open>Length\<close>

definition [implicit]: "len \<equiv> ListRec ? Nat 0 (\<lambda>_ _ rec. suc rec)"

experiment begin
  Lemma "len [] \<equiv> ?n" by (subst comps)+
  Lemma "len [0, suc 0, suc (suc 0)] \<equiv> ?n" by (subst comps)+
end


end