You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/_docs/reference/changed-features/pattern-matching.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ def unapplySeq(x: T): U
18
18
```
19
19
20
20
Where `T` is an arbitrary type, if it is a subtype of the scrutinee's type `Scrut`, a [type test](../other-new-features/type-test.md) is performed before calling the method.
21
-
`U` follows rules described in [Fixed Arity Extractors](#fixed-arity-extractors) and [Variadic Extractors](#variadic-extractors).
21
+
`U` follows rules described in [Fixed Arity Extractors](#fixed-arity-extractors-1) and [Variadic Extractors](#variadic-extractors-1).
22
22
23
23
**Note:**`U` can be the type of the extractor object.
24
24
@@ -43,8 +43,8 @@ def unapply(x: T): U
43
43
44
44
The type `U` conforms to one of the following matches:
45
45
46
-
-[Boolean match](#boolean-match)
47
-
-[Product match](#product-match)
46
+
-[Boolean match](#boolean-match-1)
47
+
-[Product match](#product-match-1)
48
48
49
49
Or `U` conforms to the type `R`:
50
50
@@ -57,8 +57,8 @@ type R = {
57
57
58
58
and `S` conforms to one of the following matches:
59
59
60
-
-[single match](#single-match)
61
-
-[name-based match](#name-based-match)
60
+
-[single match](#single-match-1)
61
+
-[name-based match](#name-based-match-1)
62
62
63
63
The former form of `unapply` has higher precedence, and _single match_ has higher
64
64
precedence over _name-based match_.
@@ -183,8 +183,8 @@ Where `U` has to fullfill the following:
183
183
184
184
1. Set `V := U`
185
185
2.`V` is valid if `V` conforms to one of the following matches:
0 commit comments