with-each-object ( name quot -- )
Furnace framework » Furnace presentation layer » HTML forms » HTML form values

Prev:with-each-value ( name quot -- )
Next:nest-form ( name quot -- )


Vocabulary
html.forms

Inputs
namea string
quota quotation


Outputs
None

Word description
Calls the quotation with each element of the value named name; the value must be a sequence. The quotation is called in a new dynamic scope where the object's slots become named values, as if from-object was called.

Notes
This word is used to implement the t:bind-each tag of the html.templates.chloe templating system. It can also be called directly from html.templates.fhtml templates.

Definition