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

Prev:to-object ( destination names -- )
Next:with-each-object ( 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 with the index and value values set to the one-based index, and the sequence element in question, respectively.

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

Definition