回答編集履歴

1

便宜的に「A または B」の表現方法を「A | B」に統一しました。

2021/09/02 07:05

投稿

TomohiroKumagai
TomohiroKumagai

スコア441

test CHANGED
@@ -52,7 +52,7 @@
52
52
 
53
53
  ```
54
54
 
55
- extension SomeProtocol where Self: HogeProtocol || FugaProtocol {
55
+ extension SomeProtocol where Self: HogeProtocol | FugaProtocol {
56
56
 
57
57
  func someWhereHogeOrFuga() {
58
58