diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/array-input-item-separators.scm | 2 | ||||
-rw-r--r-- | doc/ccwl.skb | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/array-input-item-separators.scm b/doc/array-input-item-separators.scm new file mode 100644 index 0000000..8cb5900 --- /dev/null +++ b/doc/array-input-item-separators.scm @@ -0,0 +1,2 @@ +(command #:inputs (messages #:type (array string)) + #:run "echo" (array messages #:separator ",")) diff --git a/doc/ccwl.skb b/doc/ccwl.skb index bcbb0e1..726b405 100644 --- a/doc/ccwl.skb +++ b/doc/ccwl.skb @@ -349,6 +349,17 @@ inputs to be staged. Here is a rather concocted example.] (scheme-source "doc/array-types.scm")) (p [Nested array types are also supported.] (scheme-source "doc/nested-array-types.scm"))) + (section :title [Array input item separators] + :ident "section-array-input-item-separators" + (p [Occasionally, it is required to serialize array type inputs +by separating them with a specific item separator. This can be +achieved by explicitly specifying a separator in the ,(code [#:run]) +argument of ,(code [command]). For example, to use comma as the item +separator, you could do] + (scheme-source "doc/array-input-item-separators.scm") + [If ,(code "[foo, bar, aal, vel]") is passed in as ,(code +[messages]), then the command invoked is ,(samp "echo +foo,bar,aal,vel").])) (section :title [Scatter/gather] :ident "section-scatter-gather" (p [ccwl supports CWL's dotproduct scatter/gather feature using |