5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
|
import './Complex.mjs'
|
||
|
export const negate = {
|
||
|
Complex: [['self'], ref => z => ({re: ref.self(z.re), im: ref.self(z.im)})]
|
||
|
}
|