diff options
author | Marvin Borner | 2024-08-02 00:26:21 +0200 |
---|---|---|
committer | Marvin Borner | 2024-08-02 00:26:21 +0200 |
commit | e2c3965f929556dda9f779c237f4ba96c8f6c542 (patch) | |
tree | 208d981f6b9bd1829a99bce8ea3a55671e08a2fd /std/List/Parigot.bruijn | |
parent | 8d8c22cefbcb4a108adc20f46a2dcae67ec8b6c6 (diff) |
Improved Parigot data types
Diffstat (limited to 'std/List/Parigot.bruijn')
-rw-r--r-- | std/List/Parigot.bruijn | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/std/List/Parigot.bruijn b/std/List/Parigot.bruijn new file mode 100644 index 0000000..533b034 --- /dev/null +++ b/std/List/Parigot.bruijn @@ -0,0 +1,41 @@ +# MIT License, Copyright (c) 2024 Marvin Borner +# see "on the representation of data in lambda-calculus" (Parigot 1989) +# constant append/snoc + +# empty list element +empty [0] ⧗ (Parigot a) + +# prepends an element to a list +cons [[[[0 3 (2 1)]]]] ⧗ a → (Parigot a) → (Parigot a) + +…:… cons + +# returns the head of a list or k +head [0 [0] [[1]]] ⧗ (Parigot a) → a + +:test (head ('a' : ('b' : ('c' : empty)))) ('a') +:test (head empty) ([[1]]) + +# returns the tail of a list or &ki +tail [[1 0 [[0]]]] ⧗ (Parigot a) → (Parigot a) + +:test (tail ('a' : ('b' : ('c' : empty)))) ('b' : ('c' : empty)) +:test (tail empty) ([0 [[0]]]) + +# appends two lists +append [[[2 (1 0)]]] ⧗ (Parigot a) → (Parigot a) → (Parigot a) + +…++… append + +:test (append ('a' : ('b' : empty)) ('c' : ('d' : empty))) ('a' : ('b' : ('c' : ('d' : empty)))) + +# appends an element to a list +snoc [[[2 [0 2 1]]]] ⧗ (Parigot a) → a → (Parigot a) + +…;… snoc + +:test (snoc ('a' : ('b' : empty)) 'c') ('a' : ('b' : ('c' : empty))) + +iter [[[0 ι ρ ρ]]] + ρ [[3 (1 0 0)]] + ι [[4]] |