mingo
Version:
MongoDB query language for in-memory objects
9 lines (8 loc) • 352 B
TypeScript
import { ExpressionOperator } from "../../../types";
/**
* Merge two lists together.
*
* Transposes an array of input arrays so that the first element of the output array would be an array containing,
* the first element of the first input array, the first element of the second input array, etc.
*/
export declare const $zip: ExpressionOperator;