Avatar
Taketo Sano 4/9/2018 2:07 PM
ちなみに 2項 - は AdditiveGroup というプロトコルで + と単項 - を使ってこう定義してます: public extension AdditiveGroup { public static func -(a: Self, b: Self) -> Self { return (a + (-b)) } } https://github.com/taketo1024/SwiftyMath/blob/master/Sources/SwiftyMath/Abstract/AdditiveGroup.swift#L12
SwiftyMath - Pure Math in Pure Swift.
2:07 PM
今から上の方法試してみます。