UNPKG

iter-over

Version:

Sugary iteration utilities and interfaces.

11 lines (10 loc) 327 B
import { AbstractIterator } from "../core/abstract-iterator"; export declare class StringCharacterIterator extends AbstractIterator<string> { private content; private index; constructor(content: string); hasNext(): boolean; next(): string | undefined; remove(): string | undefined; reset(): void; }