(Object coll, int n)
| 912 | } |
| 913 | |
| 914 | static public Object nth(Object coll, int n){ |
| 915 | if(coll instanceof Indexed) |
| 916 | return ((Indexed) coll).nth(n); |
| 917 | return nthFrom(Util.ret1(coll, coll = null), n); |
| 918 | } |
| 919 | |
| 920 | static Object nthFrom(Object coll, int n){ |
| 921 | if(coll == null) |