Only two E's.
This commit is contained in:
parent
14554527b4
commit
90aa426bbd
|
|
@ -2,28 +2,27 @@
|
||||||
|
|
||||||
## enstacken
|
## enstacken
|
||||||
|
|
||||||
Basis Function Combinator
|
Function
|
||||||
|
|
||||||
stack \[clear\] dip
|
Put the stack onto the stack replacing the contents of the stack.
|
||||||
|
|
||||||
|
... a b c enstacken
|
||||||
|
-------------------------
|
||||||
|
[c b a ...]
|
||||||
|
|
||||||
Gentzen diagram.
|
|
||||||
|
|
||||||
### Definition
|
### Definition
|
||||||
|
|
||||||
if not basis.
|
> [stack] \[[clear]\] [dip]
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
### Discussion
|
||||||
|
|
||||||
Lorem ipsum.
|
This is a destructive version of [stack]. See the note under
|
||||||
|
[disenstacken] about the apparent but illusory reversal of the stack.
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[stack]
|
||||||
|
[unstack]
|
||||||
|
[disenstacken]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,23 +2,14 @@
|
||||||
|
|
||||||
## eq
|
## eq
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a == b.
|
Compare the two items on the top of the stack for equality and replace
|
||||||
|
them with a Boolean value.
|
||||||
|
|
||||||
Gentzen diagram.
|
a b eq
|
||||||
|
-------------
|
||||||
### Definition
|
Boolean
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
### Discussion
|
||||||
|
|
||||||
|
|
@ -26,4 +17,10 @@ Lorem ipsum.
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[cmp]
|
||||||
|
[ge]
|
||||||
|
[gt]
|
||||||
|
[le]
|
||||||
|
[lt]
|
||||||
|
[ne]
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1341,53 +1341,43 @@ Run a copy of program `F` under the next item down on the stack.
|
||||||
|
|
||||||
## enstacken
|
## enstacken
|
||||||
|
|
||||||
Basis Function Combinator
|
Function
|
||||||
|
|
||||||
stack \[clear\] dip
|
Put the stack onto the stack replacing the contents of the stack.
|
||||||
|
|
||||||
|
... a b c enstacken
|
||||||
|
-------------------------
|
||||||
|
[c b a ...]
|
||||||
|
|
||||||
Gentzen diagram.
|
|
||||||
|
|
||||||
### Definition
|
### Definition
|
||||||
|
|
||||||
if not basis.
|
> [stack] \[[clear]\] [dip]
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
### Discussion
|
||||||
|
|
||||||
Lorem ipsum.
|
This is a destructive version of [stack]. See the note under
|
||||||
|
[disenstacken] about the apparent but illusory reversal of the stack.
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[stack]
|
||||||
|
[unstack]
|
||||||
|
[disenstacken]
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
## eq
|
## eq
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a == b.
|
Compare the two items on the top of the stack for equality and replace
|
||||||
|
them with a Boolean value.
|
||||||
|
|
||||||
Gentzen diagram.
|
a b eq
|
||||||
|
-------------
|
||||||
### Definition
|
Boolean
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
### Discussion
|
||||||
|
|
||||||
|
|
@ -1395,7 +1385,13 @@ Lorem ipsum.
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[cmp]
|
||||||
|
[ge]
|
||||||
|
[gt]
|
||||||
|
[le]
|
||||||
|
[lt]
|
||||||
|
[ne]
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue