func _derivativeConjugate()

in Sources/ComplexModule/Complex+Differentiable.swift [91:96]


  func _derivativeConjugate() -> (
    value: Complex,
    pullback: (Complex) -> Complex
  ) {
    (conjugate, { v in v.conjugate })
  }