diff options
author | Marvin Borner | 2023-11-06 00:24:11 +0100 |
---|---|---|
committer | Marvin Borner | 2023-11-06 00:24:31 +0100 |
commit | 9d722a0b6138827de743f9fe4acbf3f2c1830bb0 (patch) | |
tree | 789b8df72f0f2cae2bb4009ddb93b914bf83eb2c /docs/wiki_src/coding/style.md | |
parent | 027fc0f91ae7bf64564091fbcec7694f5d53d8fe (diff) |
Started creating new docs with wiki
Diffstat (limited to 'docs/wiki_src/coding/style.md')
-rw-r--r-- | docs/wiki_src/coding/style.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/wiki_src/coding/style.md b/docs/wiki_src/coding/style.md new file mode 100644 index 0000000..d0ec7a9 --- /dev/null +++ b/docs/wiki_src/coding/style.md @@ -0,0 +1,36 @@ +# Coding style + +## Scoping + +## If/else + +redundant + +## Head/tail + +redundant + +## Type signatures + +## Recursion + +[Recursion](recursion.md) should almost always be achieved with the +`y`{.bruijn} or `z`{.bruijn} combinators. + +A common coding style in bruijn's standard library is to use the scoped +`rec` function to indicate recursion. You would then use `n+1` +abstraction around `rec` to indicate `n` arguments and the additionally +induced recursive call. + +Example of the `length`{.bruijn} function for lists: + +``` bruijn +# 3 abstractions => two arguments +# 2 is recursive call +# 1 is accumulator (+0) +# 0 is argument (list) +length z [[[rec]]] (+0) ⧗ (List a) → Number + rec 0 [[[case-inc]]] case-end + case-inc 5 ++4 1 + case-end 1 +``` |