More misc. ref docs.
This commit is contained in:
parent
0ac20424e8
commit
7863ba8856
|
|
@ -15,4 +15,3 @@ This is the only function that modifies the dictionary. It's provided as a
|
||||||
convenience, for tinkering with new definitions before entering them into
|
convenience, for tinkering with new definitions before entering them into
|
||||||
the `defs.txt` file. It can be abused, which you should avoid unless you
|
the `defs.txt` file. It can be abused, which you should avoid unless you
|
||||||
know what you're doing.
|
know what you're doing.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,10 @@
|
||||||
|
|
||||||
Basis Function
|
Basis Function
|
||||||
|
|
||||||
|
|
||||||
Less-Than-or-Equal-to comparison of the two items on the top of the
|
Less-Than-or-Equal-to comparison of the two items on the top of the
|
||||||
stack, replacing them with a Boolean value.
|
stack, replacing them with a Boolean value.
|
||||||
|
|
||||||
a b eq
|
a b le
|
||||||
-------------
|
-------------
|
||||||
Boolean
|
Boolean
|
||||||
(a <= b)
|
(a <= b)
|
||||||
|
|
|
||||||
|
|
@ -2,28 +2,14 @@
|
||||||
|
|
||||||
## lshift
|
## lshift
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a \<\< b.
|
[Logical Left-Shift](https://en.wikipedia.org/wiki/Logical_shift)
|
||||||
|
|
||||||
Gentzen diagram.
|
a n lshift
|
||||||
|
----------------
|
||||||
### Definition
|
(a×2ⁿ)
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[rshift]
|
||||||
|
|
|
||||||
|
|
@ -2,28 +2,21 @@
|
||||||
|
|
||||||
## lt
|
## lt
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a \< b.
|
Less-Than comparison of the two items on the top of the
|
||||||
|
stack, replacing them with a Boolean value.
|
||||||
|
|
||||||
Gentzen diagram.
|
a b lt
|
||||||
|
-------------
|
||||||
### Definition
|
Boolean
|
||||||
|
(a < b)
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[cmp]
|
||||||
|
[eq]
|
||||||
|
[ge]
|
||||||
|
[gt]
|
||||||
|
[le]
|
||||||
|
[ne]
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -2019,18 +2019,16 @@ convenience, for tinkering with new definitions before entering them into
|
||||||
the `defs.txt` file. It can be abused, which you should avoid unless you
|
the `defs.txt` file. It can be abused, which you should avoid unless you
|
||||||
know what you're doing.
|
know what you're doing.
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
## le
|
## le
|
||||||
|
|
||||||
Basis Function
|
Basis Function
|
||||||
|
|
||||||
|
|
||||||
Less-Than-or-Equal-to comparison of the two items on the top of the
|
Less-Than-or-Equal-to comparison of the two items on the top of the
|
||||||
stack, replacing them with a Boolean value.
|
stack, replacing them with a Boolean value.
|
||||||
|
|
||||||
a b eq
|
a b le
|
||||||
-------------
|
-------------
|
||||||
Boolean
|
Boolean
|
||||||
(a <= b)
|
(a <= b)
|
||||||
|
|
@ -2085,61 +2083,40 @@ Just as [branch] has it's more common and convenient form [ifte],
|
||||||
|
|
||||||
## lshift
|
## lshift
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a \<\< b.
|
[Logical Left-Shift](https://en.wikipedia.org/wiki/Logical_shift)
|
||||||
|
|
||||||
Gentzen diagram.
|
a n lshift
|
||||||
|
----------------
|
||||||
### Definition
|
(a×2ⁿ)
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[rshift]
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
## lt
|
## lt
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a \< b.
|
Less-Than comparison of the two items on the top of the
|
||||||
|
stack, replacing them with a Boolean value.
|
||||||
|
|
||||||
Gentzen diagram.
|
a b lt
|
||||||
|
-------------
|
||||||
### Definition
|
Boolean
|
||||||
|
(a < b)
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[cmp]
|
||||||
|
[eq]
|
||||||
|
[ge]
|
||||||
|
[gt]
|
||||||
|
[le]
|
||||||
|
[ne]
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -2333,31 +2310,24 @@ Lorem ipsum.
|
||||||
|
|
||||||
## ne
|
## ne
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a != b.
|
Not-Equal comparison of the two items on the top of the
|
||||||
|
stack, replacing them with a Boolean value.
|
||||||
|
|
||||||
Gentzen diagram.
|
a b ne
|
||||||
|
-------------
|
||||||
### Definition
|
Boolean
|
||||||
|
(a = b)
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[cmp]
|
||||||
|
[eq]
|
||||||
|
[ge]
|
||||||
|
[gt]
|
||||||
|
[le]
|
||||||
|
[lt]
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -3404,31 +3374,17 @@ Lorem ipsum.
|
||||||
|
|
||||||
## rshift
|
## rshift
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a \>\> b.
|
[Logical Right-Shift](https://en.wikipedia.org/wiki/Logical_shift)
|
||||||
|
|
||||||
Gentzen diagram.
|
a n rshift
|
||||||
|
----------------
|
||||||
### Definition
|
(a∕2ⁿ)
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[lshift]
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,28 +2,21 @@
|
||||||
|
|
||||||
## ne
|
## ne
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a != b.
|
Not-Equal comparison of the two items on the top of the
|
||||||
|
stack, replacing them with a Boolean value.
|
||||||
|
|
||||||
Gentzen diagram.
|
a b ne
|
||||||
|
-------------
|
||||||
### Definition
|
Boolean
|
||||||
|
(a = b)
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[cmp]
|
||||||
|
[eq]
|
||||||
|
[ge]
|
||||||
|
[gt]
|
||||||
|
[le]
|
||||||
|
[lt]
|
||||||
|
|
|
||||||
|
|
@ -2,28 +2,14 @@
|
||||||
|
|
||||||
## rshift
|
## rshift
|
||||||
|
|
||||||
Basis Function Combinator
|
Basis Function
|
||||||
|
|
||||||
Same as a \>\> b.
|
[Logical Right-Shift](https://en.wikipedia.org/wiki/Logical_shift)
|
||||||
|
|
||||||
Gentzen diagram.
|
a n rshift
|
||||||
|
----------------
|
||||||
### Definition
|
(a∕2ⁿ)
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Derivation
|
|
||||||
|
|
||||||
if not basis.
|
|
||||||
|
|
||||||
### Source
|
|
||||||
|
|
||||||
if basis
|
|
||||||
|
|
||||||
### Discussion
|
|
||||||
|
|
||||||
Lorem ipsum.
|
|
||||||
|
|
||||||
### Crosslinks
|
### Crosslinks
|
||||||
|
|
||||||
Lorem ipsum.
|
[lshift]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue