export const addDouble = x => y => x + y; export const mulDouble = x => y => x * y; export const eqDouble = x => y => x === y;