Lines Matching refs:variable
55 > - A variable can be followed by another variable, for example, **{{key1}}{{key2}}**.
56 > - A variable can also be followed by a constant, for example, **"my name is {{name}}, i am f…
60 > - NOT: {{! flag1}} (The NOT operation can only be performed on a Boolean variable.)
62 > - {{flag? key1: key2}} (**flag** is a Boolean variable. **key1** and **key2** can be variabl…
64 …efault value is **false** when a Boolean-specific operation is performed on a non-Boolean variable.
65 > - The preceding variable and operation parsing do not support nesting.
140 <!-- Define the name for an element variable. -->
144 <!-- Define an element variable and its index name. -->
165 - for="array": **array** is an array object, whose element variable is **$item** by default.
167 - for="v in array": **v** is a custom element variable, whose index is **$idx** by default.
169 …ay": **i** indicates the element index, and **v** indicates the element variable. All elements of …