Uses of Interface
com.c8db.C8Iterable
-
Packages that use C8Iterable Package Description com.c8db com.c8db.internal.cursor -
-
Uses of C8Iterable in com.c8db
Subinterfaces of C8Iterable in com.c8db Modifier and Type Interface Description interfaceC8Cursor<T>Methods in com.c8db that return C8Iterable Modifier and Type Method Description C8Iterable<T>C8Iterable. filter(Predicate<? super T> predicate)Returns aArangoIterableconsisting of the elements of thisArangoIterablethat match the given predicate.<R> C8Iterable<R>C8Iterable. map(Function<? super T,? extends R> mapper)Returns aArangoIterableconsisting of the results of applying the given function to the elements of thisArangoIterable. -
Uses of C8Iterable in com.c8db.internal.cursor
Classes in com.c8db.internal.cursor that implement C8Iterable Modifier and Type Class Description classAbstractC8Iterable<T>classC8CursorImpl<T>classC8FilterIterable<T>classC8MappingIterable<R,T>Methods in com.c8db.internal.cursor that return C8Iterable Modifier and Type Method Description C8Iterable<T>AbstractC8Iterable. filter(Predicate<? super T> predicate)<R> C8Iterable<R>AbstractC8Iterable. map(Function<? super T,? extends R> mapper)Constructors in com.c8db.internal.cursor with parameters of type C8Iterable Constructor Description C8FilterIterable(C8Iterable<T> iterable, Predicate<? super T> predicate)C8MappingIterable(C8Iterable<R> iterable, Function<? super R,? extends T> mapper)
-