(Object x)
| 738 | } |
| 739 | |
| 740 | static public ISeq more(Object x){ |
| 741 | if(x instanceof ISeq) |
| 742 | return ((ISeq) x).more(); |
| 743 | ISeq seq = seq(x); |
| 744 | if(seq == null) |
| 745 | return PersistentList.EMPTY; |
| 746 | return seq.more(); |
| 747 | } |
| 748 | |
| 749 | //static public Seqable more(Object x){ |
| 750 | // Seqable ret = null; |