Displaying 2 results from an estimated 2 matches for "do_sort".
Did you mean:
db_port
2001 Mar 27
1
sort(list(..)) ?
...ng NULL.
Hence I'd propose to replace
the test
if (!isVector(CAR(args)))
errorcall(call, "only vectors can be sorted");
by
if(CAR(args) == R_NilValue) return R_NilValue;
if(!isVectorAtomic(CAR(args)))
errorcall(call, "only atomic vectors can be sorted");
in do_sort(.) in src/main/sort.c .
This doesn't quite pass "make check" currently because
is.factor(factor(list()))
now would give an error.
I still think we should not silently allow list()s {or expression()s} as
argument to sort() as we do now; BTW, we just return them unchanged.
We coul...
2007 Jul 05
8
when can publish the next version?
when can publish the next version?
i am waiting...
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users