File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/mnemonist

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

2 dirs
86 files
hashed-array-tree.d.ts755 B · 33 lines
/** * Mnemonist HashedArrayTree Typings * ================================== */import {IArrayLikeConstructor} from './utils/types'; type HashedArrayTreeOptions = {  initialCapacity?: number;  initialLength?: number;  blockSize?: number;} export default class HashedArrayTree<T> {   // Members  blockSize: number;  capacity: number;  length: number;   // Constructor  constructor(ArrayClass: IArrayLikeConstructor, capacity: number);  constructor(ArrayClass: IArrayLikeConstructor, options: HashedArrayTreeOptions);   // Methods  set(index: number, value: T): this;  get(index: number): T | undefined;  grow(capacity: number): this;  resize(length: number): this;  push(value: T): number;  pop(): T | undefined;  inspect(): any;}