case XLOperType.xltypeBool:
return new XLBool(x.bool);
case XLOperType.xltypeErr:
return new XLError(x.err);
case XLOperType.xltypeInt:
return new XLInt(x.w);
case XLOperType.xltypeMissing:
return XLMissing.MISSING;
case XLOperType.xltypeMulti:
XLArray a = new XLArray(x.rows, x.cols);
for (int i = 0; i < x.array.length; i++) {