pocomath/src/complex/negate.mjs

6 lines
133 B
JavaScript

export {Types} from './Types/Complex.mjs'
export const negate = {
Complex: ({self}) => z => ({re: self(z.re), im: self(z.im)})
}