Avatar
あいや、違うか。
12:12 AM
デフォルトパラメータを使うと、コンクリートタイプの実装よりプロトコルエクステンションが優先されるらしい。 https://forums.swift.org/t/different-behavior-using-default-values-with-extension-and-struct/23675/1 (edited)
👋 Introduction Method defined on Extension seems to override the default method when default values are used. ⬇ Example import Foundation protocol X { func say(sentence: String) } extension X { func say(sentence: String = "Hello Jessy") { print("X :...