2015-08-18 22:21:43 +03:00
|
|
|
bucbar `$|` %bcbr
|
|
|
|
=================
|
2015-02-18 06:03:21 +03:00
|
|
|
|
|
|
|
<div class="short">
|
|
|
|
|
|
|
|
Atom or cell
|
|
|
|
------------
|
|
|
|
|
|
|
|
`$|` is a tile rune that produces a [`%reed`](), a tile whose [icon]()
|
|
|
|
is a [fork]() between two nouns: an [atom]() of `tile` `p` and a cell of
|
|
|
|
`tile` `q`. `$|` is similar to [`$?`](), but is more strict in that in
|
|
|
|
only contains one atom tile and one cell tile.
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
</hr>
|
|
|
|
### Produces
|
|
|
|
|
|
|
|
[`Tile`](): `[%reed p=tile q=tile]`
|
|
|
|
|
|
|
|
### Sample
|
|
|
|
|
|
|
|
`p` is a [`tile`]() `q` is a [`tile`]()
|
|
|
|
|
|
|
|
### Tall form
|
|
|
|
|
|
|
|
$| p
|
|
|
|
q
|
|
|
|
|
|
|
|
### Wide form
|
|
|
|
|
|
|
|
$|(p q)
|
|
|
|
|
|
|
|
### Irregular form
|
|
|
|
|
|
|
|
None
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
~zod/try=> *$|(~ [~ u=@])
|
|
|
|
~
|
|
|
|
~zod/try=> :type; *$|(~ [~ u=@])
|
|
|
|
~
|
|
|
|
u(@)
|
|
|
|
|
|
|
|
++ list |* a=_,* :: null-terminated list
|
|
|
|
$|(~ [i=a t=(list a)]) ::
|
|
|
|
|
|
|
|
In `++list`, `$|` specifies that every element in a noun that can be
|
|
|
|
cast to a `++list` is either the atom `~` or the cell
|
|
|
|
`[i=a t=(list a)]`.
|