We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8344d9d commit d7acd2aCopy full SHA for d7acd2a
1 file changed
RubyScript/rb/README.rdoc
@@ -22,6 +22,19 @@ data of the node.
22
$out_data_0 << row
23
end
24
25
+
26
+== Copy existing rows from all inputs
27
+This example is applicated for Ruby Script 2x2. Note: all inputs
28
+and outputs are accessible by names like $in_data_X, $out_data_X or
29
+by number in appropriate array $output_datatable_arr, $input_datatable_arr.
30
31
+ (0..1).each do |i|
32
+ out = $output_datatable_arr[i]
33
+ $input_datatable_arr[i].each do |row|
34
+ out << row
35
+ end
36
37
38
== Add new two columns with String and Int types
39
This example also illustrates the progress state updating.
40
0 commit comments