(Object x)
| 708 | } |
| 709 | |
| 710 | static public Object first(Object x){ |
| 711 | if(x instanceof ISeq) |
| 712 | return ((ISeq) x).first(); |
| 713 | ISeq seq = seq(x); |
| 714 | if(seq == null) |
| 715 | return null; |
| 716 | return seq.first(); |
| 717 | } |
| 718 | |
| 719 | static public Object second(Object x){ |
| 720 | return first(next(x)); |
no test coverage detected