I want to extend the protocol to satisfy one of several limitations. I know how to satisfy several constraints with (,), but that will fit all of them.
Example:
protocol Abc { ... } protocol xyz { ... } protocol my { ... } extenstion Abc where Self: xyz, Self: my { ... }
I want Abc match xyz or my .
source share