280281282283284285286
return this; } public LazyFloatIterable asLazy() { return new LazyFloatIterableAdapter(this); }
820821822823824825826
return FloatHashBag.newBag(this); } public LazyFloatIterable asLazy() { return new LazyFloatIterableAdapter(this); }
1614161516161617161816191620
392393394395396397398
212213214215216217218
return this.collection.toImmutable(); } public LazyFloatIterable asLazy() { return new LazyFloatIterableAdapter(this); }
231232233234235236237
return new FloatHashBag(); } public LazyFloatIterable asLazy() { return new LazyFloatIterableAdapter(this); }
47484950515253
/** * Creates a deferred float iterable for the specified float iterable. */ public static LazyFloatIterable adapt(FloatIterable iterable) { return new LazyFloatIterableAdapter(iterable); }
252253254255256257258
return FloatHashBag.newBagWith(this.element1); } public LazyFloatIterable asLazy() { return new LazyFloatIterableAdapter(this); }
286287288289290291292
return this.stack.hashCode(); } public LazyFloatIterable asLazy() { return new LazyFloatIterableAdapter(this); }
197198199200201202203204
@Override public LazyFloatIterable asLazy() { synchronized (this.getLock()) { return new LazyFloatIterableAdapter(this); } }