/proc/self/root/proc/self/root/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 /.
/** * Mnemonist Set Typings * ====================== */export function intersection<T>(...set: Array<Set<T>>): Set<T>;export function union<T>(...set: Array<Set<T>>): Set<T>;export function difference<T>(a: Set<T>, b: Set<T>): Set<T>;export function symmetricDifference<T>(a: Set<T>, b: Set<T>): Set<T>;export function isSubset<T>(a: Set<T>, b: Set<T>): boolean;export function isSuperset<T>(a: Set<T>, b: Set<T>): boolean;export function add<T>(a: Set<T>, b: Set<T>): void;export function subtract<T>(a: Set<T>, b: Set<T>): void;export function intersect<T>(a: Set<T>, b: Set<T>): void;export function disjunct<T>(a: Set<T>, b: Set<T>): void;export function intersectionSize<T>(a: Set<T>, b:Set<T>): number;export function unionSize<T>(a: Set<T>, b:Set<T>): number;export function jaccard<T>(a: Set<T>, b:Set<T>): number;export function overlap<T>(a: Set<T>, b: Set<T>): number;