此内容没有您所选择的语言版本。
16.19. Interpolating Cell Data Example
- If the template is
Foo(bar == $param)
and the cell is42
, then the result isFoo(bar == 42)
. - If the template is
Foo(bar < $1, baz == $2)
and the cell contains42,43
, the result will beFoo(bar < 42, baz ==43)
. - The template
forall(&&){bar != $}
with a cell containing42,43
results inbar != 42 && bar != 43
.