o1js
Version:
TypeScript framework for zk-SNARKs and zkApps
20 lines • 453 B
JavaScript
import { assert } from './errors.js';
export { Tuple, TupleN };
const Tuple = {
map(tuple, f) {
return tuple.map(f);
},
};
const TupleN = {
map(tuple, f) {
return tuple.map(f);
},
fromArray(n, arr) {
assert(arr.length === n, `Expected array of length ${n}, got ${arr.length}`);
return arr;
},
hasLength(n, tuple) {
return tuple.length === n;
},
};
//# sourceMappingURL=types.js.map