@Override public boolean any(Callable<? extends ceylon.language.Boolean> arg0) { for (int ii = this.start; ii < this.end; ii += this.step) { if (arg0.$call$(ceylon.language.Float.instance(array[ii])).booleanValue()) { return true; } } return false; }
@Override public ceylon.language.Float getLast() { return this.getEmpty() ? null : ceylon.language.Float.instance(this.array[this.end - 1]); }