Irregular forms

While Hoon has a large amount of sugar syntax, some forms that may look irregular are actually regular wing syntax or another language feature, such as ,.

When in doubt, you can use the !, zapcom rune to determine the AST to which Hoon parses an expression.

> !,(*hoon c.b.a)
[%wing p=~[%c %b %a]]

Quick Lookup of Irregular Forms

Form
Regular Form

_foo

$_, normalizes to an example

foo@bar

$@, normalizes to a type union of an atom and a cell

foo=bar

$=, wraps a face around a value

?(%foo %bar %baz)

$?, forms a type union

(foo a b c)

%:, calls a gate with n arguments

~(arm core arg)

%~, pulls an arm in a door

foo(a 1, b 2, c 3)

%=, resolve a wing with changes

[foo bar]

:-, constructs a cell

[a b c]

:* or $:, constructs n-tuple in normal mode or its structure in structure mode

~[a b c]

:~, constructs null-terminated list

+(42)

.+, increments with Nock 4

=(a b)

.=, tests for equality with Nock 5

`foo`bar

^-, typecasts by explicit type label

=foo or foo=bar

^=, binds name to value

*foo

^*, bunts (produces default mold value)

,foo

^:, produces “factory” gate for type

:(fun a b c d)

;:, calls binary function as n-ary function

foo:bar

=<, composes two expressions, inverted

|(foo bar baz)

?|, logical OR (loobean)

&(foo bar baz)

?&, logical AND (loobean)

!foo

?!, logical NOT (loobean)

\

Reading guide

Headings contain runes, phonetics and tokens. Description contains a link to the docs and a short description of the rune. Both regular and irregular forms are given.

Want to Ctrl+F to find out the meaning of something weird you saw? Search for "\symbol". ie \? or \=. It'll show you to the irregular forms that uses that symbol.

. dot (nock)

Anything Nock can do, Hoon can do also.

.+ dotlus

docs \+

[%dtls p=atom]: increment an atom with Nock 4.

Regular: .+(p)

Irregular: +(p)

.= dottis

docs \=

[%dtts p=hoon q=hoon]: test for equality with Nock 5.

Regular: .=(p q)

Irregular: =(p q)

; mic (make)

Miscellaneous useful macros.

;: miccol

docs \:

[%mccl p=hoon q=(list hoon)]: call a binary function as an n-ary function.

Regular: ;:(p q)

Irregular: :(p q)

: col (cells)

The cell runes.

:- colhep

docs \[\]\^\/\+\`\~

[%clhp p=hoon q=hoon]: construct a cell (2-tuple).

Regular: :-(p q)

Irregular:

  [a b]   ==>   :-(a b)
[a b c]   ==>   [a [b c]]
  a^b^c   ==>   [a b c]
    a/b   ==>   [%a b]
    a+b   ==>   [%a b]
     `a   ==>   [~ a]
 ~[a b]   ==>   [a b ~]
  [a b]~  ==>   [[a b] ~]

= tis (flow)

Flow runes change the subject. All non-flow runes (except cores) pass the subject down unchanged.

=< tisgal

docs \:

[%tsgl p=hoon q=hoon]: compose two hoons, inverted.

Regular: =<(p q)

Irregular: p:q

| bar (core)

docs \$

Core runes are flow hoon.

Technically not irregular syntax, but worth mentioning.

  • |= bartis

  • |. bardot

  • |- barhep

  • |* bartar

The above runes produce a core with a single arm, named $ ("buc"). We can recompute this arm with changes, useful for recursion among other things. Commonly used with the irregular syntax for %=, :make, like so: $().

% cen (call)

The invocation family of runes.

%= centis

docs \(\)

[%cnts p=wing q=(list (pair wing hoon))]: take a wing with changes.

Regular: %=(p a 1)

Irregular: p(a 1)

%~ censig

docs \~

[%cnsg p=wing q=hoon r=hoon]: call with multi-armed door.

Regular: %~(p q r)

Irregular: ~(p q r)

%- cenhep

docs \(\)

[%cnhp p=hoon q=hoon]: call a gate (function).

Regular: %-(p q)

Irregular: (p q)

Note: (p) becomes $:p (=<($ p)), which behaves as you would expect (function call without arguments).

$ buc (mold)

A mold is a gate (function) that helps us build simple and rigorous data structures.

$? bucwut

docs \?

[%bcwt p=(list model)]: mold which normalizes a general union.

Regular: $?(p)

Irregular: ?(p)

$_ buccab

docs \_

[%bccb p=value]: mold which normalizes to an example.

Regular: $_(p)

Irregular: _p

$= buctis

docs \=

[%bcts p=skin q=spec]: wraps a face around a structure.

Regular:

$=(p q)

Irregular:

 p=q   ==>   $=(p q)
  =q   ==>   q=q
=p=q   ==>   p-q=q

? wut (test)

Hoon has the usual branches and logical tests.

?! wutzap

docs \!

[%wtzp p=hoon]: logical not.

Regular: ?!(p)

Irregular: !(p)

?& wutpam

docs \&

[%wtpm p=(list hoon)]: logical AND.

Regular: ?&(p)

Irregular: &(p)

?| wutbar

docs \|

[%wtbr p=(list hoon)]: logical OR.

Regular: ?|(p)

Irregular: |(p)

^ ket (cast)

Lets us adjust types without violating type constraints.

^: ketcol

docs \,

[%ktcl p=spec]: mold gate for type .p.

Regular: ^:(p)

Irregular: ,p

^- kethep

docs \`

[%kthp p=model q=value]: typecast by mold.

Regular: ^-(p q)

Irregular: `p`q

^* kettar

docs \*

[%kttr p=spec]: produce bunt value of mold.

Regular: ^*(p)

Irregular: *p

^= kettis

docs \=

[%ktts p=toga q=value]: name a value.

Regular: ^=(p q)

Irregular: p=q

Miscellaneous

Trivial molds

\*\@\^\?\~

  • * noun.

  • @ atom.

  • ^ cell.

  • ? loobean.

  • ~ null.

Values

\~\&\|\%

  • ~ null.

  • & loobean true.

  • | loobean false.

  • %a constant a, where a can be an ((ir)regularly defined) atom or a symbol.

See %sand for other irregular definitions of atoms.

List addressing

\&\|

  • &n nth element of a list.

  • |n tail of list after nth element (i.e. n is the head).

Limbs

docs \+\.\^\-

[%limb p=(each @ud [p=@ud q=@tas])]: attribute of subject.

  • +15 is slot 15

  • . is the whole subject (slot 1)

  • ^a is the .a "of a higher scope", i.e. "resolve variable .a, ignoring the first one found".

  • ^^p even higher, and so on.

'Lark' syntax for slots / tree addressing:

+1
+2 -
+3 +
+4 -<
+5 ->
+6 +<
+7 +>
+8 -<-
...

Wings

docs \.

[%wing p=(list limb)]; a limb search path.

a.b finds limb .a within limb .b ("variable" .a within "variable" .b).

Printing stuff

\<\>

  • >a b c< produces a tank of the output of the contents (wrapped in cell if more than one item), formatted in pretty-print.

    > >1 2 3<
    [%rose p=[p=" " q="[" r="]"] q=~[[%leaf p="1"] [%leaf p="2"] [%leaf p="3"]]]
  • <a b c> produces a tape of the tank above (i.e. <1 2 3> is same as ~(ram re >1 2 3<)).

    > <1 2 3>
    "[1 2 3]"
    
    > <`(list @)`~[1 2 3]>
    "~[1 2 3]"

, com

, can serve in several capacities in Hoon programs:

, as syntactic sugar

Sugar for the ^: ketcol or $; bucmic runes, toggling structure and value mode. (Toggling out of structure mode is uncommon.)

> !,(*hoon ,[@t @t])
[ %ktcl
  p=[%bccl p=[i=[%base p=[%atom p=~.t]] t=[i=[%base p=[%atom p=~.t]] t=~]]]
]

> !,(*hoon |=(a=,[@t @t] b))
[ %brts
    p
  [ %bcts
    p=term=%a
      q
    [ %bcmc
      p=[%cltr p=[i=[%base p=[%atom p=~.t]] t=[i=[%base p=[%atom p=~.t]] t=~]]]
    ]
  ]
  q=[%cnts p=~[[%.y p=2] %a] q=~]
]

> !,(*hoon ,,[@t @t])
[ %ktcl
    p
  [ %bcmc
    p=[%cltr p=[i=[%base p=[%atom p=~.t]] t=[i=[%base p=[%atom p=~.t]] t=~]]]
  ]
]

($; bucmic, or manual value mode, allows the use of value mode syntax to construct a mold. Concretely, it lets you build a mold out of $hoon instead of out of $spec. It is not commonly used.)

From value mode to structure mode:

[%ktcl p=spec]

From structure mode to value mode:

[%bcmc p=hoon]

, as wing syntax for stripping a face

For example, a line similar to the following is present in many Gall agents receiving HTTP requests via Eyre:

=/  ,request-line:server  (parse-request-line:server url.request.inbound-request)

This , lets you avoid using an outer face when handling the result.

> =/  ,@ud  1
  -
1
> !,(*hoon =/(,@ud 1 -))
[ %tsfs
  p=[%spec spec=[%bcmc p=[%base p=[%atom p=~.ud]]] skin=[%base base=%noun]]
  q=[%sand p=%ud q=1]
  r=[%cnts p=~[[%.y p=2]] q=~]
]

, as separator

For example, between pairs in an inline %= centis expression.

$(i +(i), j (dec j))

Last updated