‣ AssignGlobals ( rec ) | ( function ) |
This function has been transferred from package RCWA.
It assigns the record components of rec to global variables with the same names.
gap> r := rec( a := 1, b := 2, c := 3 );; gap> AssignGlobals( r ); The following global variables have been assigned: [ "a", "b", "c" ] gap> [a,b,c]; [ 1, 2, 3 ]
generated by GAPDoc2HTML