UNPKG

hazelcast-client

Version:

Hazelcast - open source In-Memory Data Grid - client for NodeJS

13 lines (12 loc) 485 B
import { SerializationService } from '../serialization/SerializationService'; export declare class ReadOnlyLazyList<T> implements Iterable<T> { private internalArray; private serializationService; constructor(array: Array<any>, serializationService: SerializationService); get(index: number): T; size(): number; values(): Iterator<T>; slice(start: number, end?: number): ReadOnlyLazyList<T>; toArray(): Array<T>; [Symbol.iterator](): Iterator<T>; }