remove node_modules and .gitignore them
This commit is contained in:
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { IForwardIterator } from "./IForwardIterator";
|
||||
/**
|
||||
* Bidirectional iterator.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export interface IBidirectionalIterator<T, Iterator extends IBidirectionalIterator<T, Iterator> = IBidirectionalIterator<T, any>> extends IForwardIterator<T, Iterator> {
|
||||
/**
|
||||
* Get previous iterator.
|
||||
*
|
||||
* @return The previous iterator.
|
||||
*/
|
||||
prev(): Iterator;
|
||||
}
|
||||
Reference in New Issue
Block a user