rqlDo method
Implementation
FunCall rqlDo(arg, [expression]) {
if (expression == null) {
return FunCall(this, _funcWrap(arg, 1));
} else {
return FunCall(_listify(arg, this), _funcWrap(expression, arg.length));
}
}
FunCall rqlDo(arg, [expression]) {
if (expression == null) {
return FunCall(this, _funcWrap(arg, 1));
} else {
return FunCall(_listify(arg, this), _funcWrap(expression, arg.length));
}
}