func sequenced<Other>(before: Other) -> SequenceGesture <Self, Other>
Sequences a gesture with another one to create a new gesture, which results in the second gesture only receiving events after the first gesture succeeds.
あるジェスチャを別のものと順番に並べて、新しいジェスチャを作成します、それは最初のジェスチャが成功した後にイベントを受け取る場合にのみ2番目のジェスチャという結果になります。
func exclusively<Other>(before: Other) -> ExclusiveGesture <Self, Other>
Combines two gestures exclusively to create a new gesture where only one gesture succeeds, giving precedence to the first gesture.
2つのジェスチャを排他的に結合して、新しいジェスチャを作成します、そこではただ1つのジェスチャだけが成功します、最初のジェスチャに優先権を与えます。