259260261262263264265
return this; } public LazyIntIterable asLazy() { return new LazyIntIterableAdapter(this); }
392393394395396397398
return IntHashBag.newBag(this); } public LazyIntIterable asLazy() { return new LazyIntIterableAdapter(this); }
132133134135136137138
} @Override public LazyIntIterable asLazy() { return new LazyIntIterableAdapter(this); }
254255256257258259260261
@Override public LazyIntIterable asLazy() { synchronized (this.getLock()) { return new LazyIntIterableAdapter(this); } }
197198199200201202203204
47484950515253
/** * Creates a deferred int iterable for the specified int iterable. */ public static LazyIntIterable adapt(IntIterable iterable) { return new LazyIntIterableAdapter(iterable); }
208209210211212213214
return new IntHashBag(); } public LazyIntIterable asLazy() { return new LazyIntIterableAdapter(this); }
311312313314315316317
return this.delegate.toReversed().injectInto(injectedValue, function); } public LazyIntIterable asLazy() { return new LazyIntIterableAdapter(this); }
231232233234235236237
783784785786787788789