include node_modules so release .zip is deployable
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std.ranges
|
||||
*/
|
||||
import { IForwardContainer } from "./IForwardContainer";
|
||||
import { IRandomAccessIterator } from "../../iterator/IRandomAccessIterator";
|
||||
import { IPointer } from "../../functional/IPointer";
|
||||
import { Vector } from "../../container/Vector";
|
||||
/**
|
||||
* Random-access iterable container.
|
||||
*
|
||||
* @template Iterator Iterator type
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export interface IRandomAccessContainer<IteratorT extends IRandomAccessIterator<IPointer.ValueType<IteratorT>, IteratorT>> extends IForwardContainer<IteratorT> {
|
||||
}
|
||||
export declare namespace IRandomAccessContainer {
|
||||
/**
|
||||
* Deduct iterator type.
|
||||
*/
|
||||
type IteratorType<Container extends Array<any> | IRandomAccessContainer<any>> = Container extends Array<infer T> ? Vector.Iterator<T> : Container extends IRandomAccessContainer<infer Iterator> ? Iterator : unknown;
|
||||
/**
|
||||
* Deduct value type.
|
||||
*/
|
||||
type ValueType<Container extends Array<any> | IRandomAccessContainer<any>> = IForwardContainer.ValueType<IteratorType<Container>>;
|
||||
}
|
||||
Reference in New Issue
Block a user