include node_modules so release .zip is deployable
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std.internal
|
||||
*/
|
||||
export interface IClear {
|
||||
/**
|
||||
* Clear elements.
|
||||
*/
|
||||
clear(): void;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IClear.js.map
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std.internal
|
||||
*/
|
||||
import { IPushFront } from "./IPushFront";
|
||||
export interface IDeque<T> extends IPushFront<T> {
|
||||
/**
|
||||
* Erase the first element.
|
||||
*/
|
||||
pop_front(): void;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IDeque.js.map
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std.internal
|
||||
*/
|
||||
export interface IEmpty {
|
||||
/**
|
||||
* Test whether container is empty.
|
||||
*/
|
||||
empty(): boolean;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IEmpty.js.map
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @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
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IFront.js.map
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* @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
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IInsert.js.map
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* @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
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IPush.js.map
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* @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
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IPushBack.js.map
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @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
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=IPushFront.js.map
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std.internal
|
||||
*/
|
||||
export interface ISize {
|
||||
/**
|
||||
* Number of elements in the container.
|
||||
*/
|
||||
size(): number;
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=ISize.js.map
|
||||
Reference in New Issue
Block a user