이 콘텐츠는 선택한 언어로 제공되지 않습니다.
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
.