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
suffix-array.d.ts709 B · 37 lines
/** * Mnemonist SuffixArray Typings * ============================== */export default class SuffixArray {    // Members  array: Array<number>;  length: number;  string: string | Array<string>;   // Constructor  constructor(string: string | Array<string>);   // Methods  toString(): string;  toJSON(): Array<number>;  inspect(): any;} export class GeneralizedSuffixArray {   // Members  array: Array<number>;  length: number;  size: number;  text: string | Array<string>;   // Constructor  constructor(strings: Array<string> | Array<Array<string>>);   // Methods  longestCommonSubsequence(): string | Array<string>;  toString(): string;  toJSON(): Array<number>;  inspect(): any;}