export interface IEnumberator<T> {
reset(): void;
moveNext(): boolean;
readonly current: T | undefined;
}