34 lines
448 B
Markdown
34 lines
448 B
Markdown
------------------------------------------------------------------------
|
|
|
|
# shunt
|
|
|
|
Basis Function Combinator
|
|
|
|
Like concat but reverses the top list into the second. :
|
|
|
|
shunt == [swons] step == reverse swap concat
|
|
|
|
[a b c] [d e f] shunt
|
|
---------------------------
|
|
[f e d a b c]
|
|
|
|
Gentzen diagram.
|
|
|
|
## Definition
|
|
|
|
if not basis.
|
|
|
|
## Derivation
|
|
|
|
if not basis.
|
|
|
|
## Source
|
|
|
|
if basis
|
|
|
|
## Discussion
|
|
|
|
Lorem ipsum.
|
|
|
|
## Crosslinks
|