Comparing version 0.0.5 to 0.0.6
@@ -35,2 +35,2 @@ export interface Const<T> { | ||
export declare function product<T, A, B>(inputA: Bag<A>, inputB: Bag<B>, func: (a: A, b: B) => Iterable<T>): Product<T, A, B>; | ||
export declare function merge<T>(input: Bag<T>[]): Merge<T>; | ||
export declare function merge<T>(...input: Bag<T>[]): Merge<T>; |
@@ -40,3 +40,3 @@ "use strict"; | ||
exports.product = product; | ||
function merge(input) { | ||
function merge(...input) { | ||
return { | ||
@@ -43,0 +43,0 @@ type: "merge", |
{ | ||
"name": "aliq", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "ALIQ (Abstract Language Integrated Query) for JavaScript and TypeScript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
14898