/**
* Efficiently inserts a value from an ordered superset into a subset, with the
* same order. Note that the subset parameter MUST be a subset of the superset
* parameter.
*/
export declarefunction insertValueIntoOrderedSubsetList<V>(val: V, subset: Array<V>, superset: Array<V>): void;