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
-10
View File
@@ -1,10 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IClear {
/**
* Clear elements.
*/
clear(): void;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IClear.js.map
-11
View File
@@ -1,11 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
import { IPushFront } from "./IPushFront";
export interface IDeque<T> extends IPushFront<T> {
/**
* Erase the first element.
*/
pop_front(): void;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IDeque.js.map
-10
View File
@@ -1,10 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IEmpty {
/**
* Test whether container is empty.
*/
empty(): boolean;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IEmpty.js.map
-18
View File
@@ -1,18 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IFront<T> {
/**
* Get the first element.
*
* @return The first element.
*/
front(): T;
/**
* Change the first element.
*
* @param val The value to change.
*/
front(val: T): void;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IFront.js.map
-9
View File
@@ -1,9 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
import { IForwardIterator } from "../../../iterator/IForwardIterator";
import { IPointer } from "../../../functional/IPointer";
export interface IInsert<Iterator extends IForwardIterator<IPointer.ValueType<Iterator>, Iterator>> {
insert(it: Iterator, value: IPointer.ValueType<Iterator>): Iterator;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IInsert.js.map
-13
View File
@@ -1,13 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IPush<T> {
/**
* Insert items at the end.
*
* @param items Items to insert.
* @return Number of elements in the container after insertion.
*/
push(...items: T[]): number;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IPush.js.map
-16
View File
@@ -1,16 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IPushBack<T> {
/**
* Insert an element at the end.
*
* @param val Value to insert.
*/
push_back(val: T): void;
}
export declare namespace IPushBack {
type ContainerType<Range extends IPushBack<any>> = Range extends IPushBack<any> ? Range : unknown;
type IteratorType<Range extends IPushBack<any>> = Range extends IPushBack<infer Iterator> ? Iterator : unknown;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IPushBack.js.map
-12
View File
@@ -1,12 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface IPushFront<T> {
/**
* Insert an element at the first.
*
* @param val Value to insert.
*/
push_front(val: T): void;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IPushFront.js.map
-10
View File
@@ -1,10 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
export interface ISize {
/**
* Number of elements in the container.
*/
size(): number;
}
-3
View File
@@ -1,3 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=ISize.js.map