285286287288289290291
return this; } public LazyCharIterable asLazy() { return new LazyCharIterableAdapter(this); }
254255256257258259260261
@Override public LazyCharIterable asLazy() { synchronized (this.getLock()) { return new LazyCharIterableAdapter(this); } }
47484950515253
/** * Creates a deferred char iterable for the specified char iterable. */ public static LazyCharIterable adapt(CharIterable iterable) { return new LazyCharIterableAdapter(iterable); }
311312313314315316317
return this.delegate.toReversed().injectInto(injectedValue, function); } public LazyCharIterable asLazy() { return new LazyCharIterableAdapter(this); }
252253254255256257258
return CharHashBag.newBagWith(this.element1); } public LazyCharIterable asLazy() { return new LazyCharIterableAdapter(this); }
280281282283284285286
132133134135136137138
} @Override public LazyCharIterable asLazy() { return new LazyCharIterableAdapter(this); }
212213214215216217218
return this.collection.toImmutable(); } public LazyCharIterable asLazy() { return new LazyCharIterableAdapter(this); }
891892893894895896897
return CharHashBag.newBag(this); } public LazyCharIterable asLazy() { return new LazyCharIterableAdapter(this); }
231232233234235236237
return new CharHashBag(); } public LazyCharIterable asLazy() { return new LazyCharIterableAdapter(this); }