(Object[] array, Object... args)
| 4085 | |
| 4086 | |
| 4087 | protected static ISeq ontoArrayPrepend(Object[] array, Object... args){ |
| 4088 | ISeq ret = ArraySeq.create(array); |
| 4089 | for(int i = args.length - 1; i >= 0; --i) |
| 4090 | ret = RT.cons(args[i], ret); |
| 4091 | return ret; |
| 4092 | } |
| 4093 | |
| 4094 | protected static ISeq findKey(Object key, ISeq args){ |
| 4095 | while(args != null) |