|  |  D.14.1.2 type2arr Procedure from libraryarr.lib(see  arr_lib).
 
Example:Usage:
type2arr(#); # def
Return:
[arr] Arrangement defined by the input
Note:
The procedure tries to cast the input to [arr] using arrAdd
 |  | LIB "arr.lib";
ring R = 0,(x,y,z),dp;
ideal I = x,y,z;
typeof(type2arr(I));
==> arr
 | 
 
 |