986987988989990991992
return result; } public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
293294295296297298299
return ShortHashBag.newBagWith(this.value1); } public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
1714171517161717171817191720
return ObjectShortHashMap.this.toBag(); } public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
677678679680681682683
return ShortHashBag.newBag(this); } public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
2667266826692670267126722673
return IntShortHashMap.this.toBag(); } public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
282283284285286287288
return new ShortHashBag(); } public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
211212213214215216217
170171172173174175176
} @Override public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
249250251252253254255
return this; } public LazyShortIterable asLazy() { return new LazyShortIterableAdapter(this); }
47484950515253
/** * Creates a deferred short iterable for the specified short iterable. */ public static LazyShortIterable adapt(ShortIterable iterable) { return new LazyShortIterableAdapter(iterable); }