‣ ChildFunction ( str, s ) | ( function ) |
This runs the GAP function str="function(arg);" on a child process accessed by the stream s. The output from "func;" can be accessed via the stream.
Examples:
‣ ChildRead ( s ) | ( function ) |
This returns, as a string, the output of the last application of ChildFunction("function(arg);",s).
Examples:
‣ ChildReadEval ( s ) | ( function ) |
This returns, as an evaluated string, the output of the last application of ChildFunction("function(arg);",s).
Examples:
‣ ParallelList ( I, fn, L ) | ( function ) |
Inputs a list I, a function fn such that fn(x) is defined for all x in I, and a list of children L. It uses the children in L to compute List(I,x->fn(x)). (Obviously the function fn must be defined on all child processes in L.)
generated by GAPDoc2HTML