func simultaneously<Other>(with: Other) -> SimultaneousGesture <Self, Other>
Combines a gesture with another gesture to create a new gesture that recognizes both gestures at the same time.
あるジェスチャを別のジェスチャと結合して、両方のジェスチャを同時に認識する新しいジェスチャを作成します。
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番目のジェスチャという結果になります。