aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Number/Wadsworth.bruijn
blob: 00bd3c39a104990c9a2582c524437c9c97dfc436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# MIT License, Copyright (c) 2023 Marvin Borner
# from Wadsworth's "some unusual numeral systems" (p224, see refs in README)

:import std/Combinator .

zero [0 [k]] ⧗ Wadsworth

# increment Wadsworth number
inc [[[2 [2 (1 0) 1]]]] ⧗ Wadsworth → Wadsworth

:test (inc (inc zero)) ([[[2 (1 (0 (k [[1]]))) 1 0]]])

# decrement Wadsworth number
dec [[1 [k (1 0)] i]] ⧗ Wadsworth → Wadsworth

:test (dec (dec (inc (inc zero)))) (zero)

# returns true if Wadsworth number is zero
zero? [0 i (k (k [[0]]))] ⧗ Wadsworth → Bool

:test (zero? zero) ([[1]])
:test (zero? (inc zero)) ([[0]])
:test (zero? (inc (inc zero))) ([[0]])