remove node_modules and .gitignore them

This commit is contained in:
2023-11-24 14:40:32 -05:00
parent 5f6e638903
commit a74d7b91b8
8963 changed files with 1 additions and 874175 deletions
-46
View File
@@ -1,46 +0,0 @@
/**
* @packageDocumentation
* @module std.base
*/
import { IContainer } from "../../base/container/IContainer";
/**
* Basic reverse iterator.
*
* @author Jeongho Nam - https://github.com/samchon
*/
export declare abstract class ReverseIterator<T extends PElem, Source extends IContainer<T, Source, Base, This, PElem>, Base extends IContainer.Iterator<T, Source, Base, This, PElem>, This extends ReverseIterator<T, Source, Base, This, PElem>, PElem = T> implements IContainer.ReverseIterator<T, Source, Base, This, PElem> {
protected base_: Base;
/**
* Initializer Constructor.
*
* @param base The base iterator.
*/
constructor(base: Base);
protected abstract _Create_neighbor(base: Base): This;
/**
* Get source container.
*
* @return The source container.
*/
source(): Source;
/**
* @inheritDoc
*/
base(): Base;
/**
* @inheritDoc
*/
get value(): T;
/**
* @inheritDoc
*/
prev(): This;
/**
* @inheritDoc
*/
next(): This;
/**
* @inheritDoc
*/
equals(obj: This): boolean;
}