47484950515253
/** * Creates a deferred long iterable for the specified long iterable. */ public static LazyLongIterable adapt(LongIterable iterable) { return new LazyLongIterableAdapter(iterable); }
197198199200201202203204
@Override public LazyLongIterable asLazy() { synchronized (this.getLock()) { return new LazyLongIterableAdapter(this); } }
311312313314315316317
return this.delegate.toReversed().injectInto(injectedValue, function); } public LazyLongIterable asLazy() { return new LazyLongIterableAdapter(this); }
259260261262263264265
return this; } public LazyLongIterable asLazy() { return new LazyLongIterableAdapter(this); }
118119120121122123124
} @Override public LazyLongIterable asLazy() { return new LazyLongIterableAdapter(this); }
285286287288289290291
132133134135136137138
280281282283284285286
173174175176177178179180
212213214215216217218
return this.collection.toImmutable(); } public LazyLongIterable asLazy() { return new LazyLongIterableAdapter(this); }