urbit/pub/docs/dev/hoon/runes/bc/bcwt.md
Galen Wolfe-Pauly bb495844be doc -> docs
2015-10-20 10:51:45 -07:00

662 B

bucwut $? %bcwt

Fork

$? produces a fork, called a %fern. A %fern is a non-empty list of cases.

Produces

Tile: [%fern p=[i=tile t=(list tile)]].

Sample

p is a list of tiles.

Tall form

$?  p
    q
==

Wide form

None

Irregular form

?(p q)

Examples

++  base  ?([%atom p=odor] %noun %cell %bean %null)     ::  axils, @ * ^ ? ~

++base, ? (the irregular form of $?) specifies a list of orthoganal cases for the %axil tile.

~zod/try=> *?(%a %b %c)
%a
~zod/try=> :type; *?(%a %b %c)
%a
{%a %b %c}