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/eta-expansion-spec.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ def m(x: Int, y: String) = ???
18
18
valf= m // becomes: val f = (x: Int, y: String) => m(x, y)
19
19
```
20
20
21
-
In Scala 2, a method reference `m`was converted to a function value only if the expected type was a function type, which means the conversion in the example above would not have been triggered, because `val f` does not have a type ascription. To still get eta-expansion, a shortcut `m _` would force the conversion.
21
+
In Scala 2, a method reference `m`is converted to a function value only if the expected type is a function type, which means the conversion in the example above would not have been triggered, because `val f` does not have a type ascription. To still get eta-expansion, a shortcut `m _` would force the conversion.
22
22
23
23
For methods with one or more parameters like in the example above, this restriction has now been dropped. The syntax `m _` is no longer needed and will be deprecated in the future.
Copy file name to clipboardexpand all lines: docs/docs/reference/changed-features/operators.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ title: "Rules for Operators"
6
6
The rules for infix operators have changed in some parts:
7
7
8
8
First, an alphanumeric method can be used as an infix operator only if its definition carries an `infix` modifier. Second, it is recommended (but not enforced) to
9
-
augment definitions of symbolic operators with `@targetName` annotations. Finally,
9
+
augment definitions of symbolic operators with [`@targetName` annotations](../other-new-features/targetName.md). Finally,
10
10
a syntax change allows infix operators to be written on the left in a multi-line expression.
@@ -78,7 +79,8 @@ and `Rs` are structural refinement declarations, and given `v.a` of type `U`, we
78
79
type, an error is emitted.
79
80
80
81
Note that `v`'s static type does not necessarily have to conform to `Selectable`, nor does it need to have `selectDynamic` and `applyDynamic` as members. It suffices that there is an implicit
81
-
conversion that can turn `v` into a `Selectable`, and the selection methods could also be available as extension methods.
82
+
conversion that can turn `v` into a `Selectable`, and the selection methods could also be available as
Even though `canEqualAny` is not declared as `given`, the compiler will still construct an `canEqualAny` instance as answer to an implicit search for the
83
+
Even though `canEqualAny` is not declared as `given`, the compiler will still
84
+
construct an `canEqualAny` instance as answer to an implicit search for the
77
85
type `CanEqual[L, R]`, unless `L` or `R` have `CanEqual` instances
78
86
defined on them, or the language feature `strictEquality` is enabled.
79
87
@@ -90,16 +98,21 @@ or with a command line option `-language:strictEquality`.
90
98
## Deriving CanEqual Instances
91
99
92
100
Instead of defining `CanEqual` instances directly, it is often more convenient to derive them. Example:
101
+
93
102
```scala
94
103
classBox[T](x: T) derivesCanEqual
95
104
```
105
+
96
106
By the usual rules of [type class derivation](./derivation.md),
97
107
this generates the following `CanEqual` instance in the companion object of `Box`:
108
+
98
109
```scala
99
110
given [T, U](usingCanEqual[T, U]):CanEqual[Box[T], Box[U]] =
100
111
CanEqual.derived
101
112
```
113
+
102
114
That is, two boxes are comparable with `==` or `!=` if their elements are. Examples:
115
+
103
116
```scala
104
117
newBox(1) ==newBox(1L) // ok since there is an instance for `CanEqual[Int, Long]`
Copy file name to clipboardexpand all lines: docs/docs/reference/contextual/right-associative-extension-methods.md
+8-2
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,10 @@ This is then followed by `def`, the method name, and possibly further parameters
18
18
(usingd: D) // <-- trailingUsing
19
19
def+:: (y: Y)(usinge: E)(z: Z) // <-- otherParams
20
20
```
21
-
An extension method is treated as a right associative operator if
22
-
it has a name ending in `:` and is immediately followed by a
21
+
22
+
An extension method is treated as a right-associative operator
23
+
(as in [SLS §6.12.3](https://www.scala-lang.org/files/archive/spec/2.13/06-expressions.html#infix-operations))
24
+
if it has a name ending in `:` and is immediately followed by a
23
25
single parameter. In the example above, that parameter is `(y: Y)`.
24
26
25
27
The Scala compiler pre-processes a right-associative infix operation such as `x +: xs`
@@ -28,17 +30,21 @@ is defined in the class of its right operand. To make up for this swap,
28
30
the expansion of right-associative extension methods performs an analogous parameter swap. More precisely, if `otherParams` consists of a single parameter
29
31
`rightParam` followed by `remaining`, the total parameter sequence
Copy file name to clipboardexpand all lines: docs/docs/reference/features-classification.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ These new constructs directly model core features of [DOT](https://www.scala-lan
20
20
-[Union types](new-types/union-types.md),
21
21
-[Type lambdas](new-types/type-lambdas.md),
22
22
replacing encodings using structural types and type projection.
23
-
-[Context Functions](contextual/context-functions.md) offering abstraction over given parameters.
23
+
-[Context functions](contextual/context-functions.md) offering abstraction over given parameters.
24
24
25
25
**Status: essential**
26
26
@@ -37,7 +37,7 @@ These constructs replace existing constructs with the aim of making the language
37
37
-[Trait parameters](other-new-features/trait-parameters.md) replace [early initializers](dropped-features/early-initializers.md) with a more generally useful construct.
38
38
-[Given instances](contextual/givens.md)
39
39
replace implicit objects and defs, focussing on intent over mechanism.
40
-
-[Using Clauses](contextual/using-clauses.md) replace implicit parameters, avoiding their ambiguities.
40
+
-[Using clauses](contextual/using-clauses.md) replace implicit parameters, avoiding their ambiguities.
41
41
-[Extension methods](contextual/extension-methods.md) replace implicit classes with a clearer and simpler mechanism.
42
42
-[Opaque type aliases](other-new-features/opaques.md) replace most uses
43
43
of value classes while guaranteeing absence of boxing.
@@ -72,7 +72,7 @@ These constructs are restricted to make the language safer.
72
72
-[Implicit Conversions](contextual/conversions.md): there is only one way to define implicit conversions instead of many, and potentially surprising implicit conversions require a language import.
73
73
-[Given Imports](contextual/import-delegate.md): implicits now require a special form of import, to make the import clearly visible.
74
74
-[Type Projection](dropped-features/type-projection.md): only classes can be used as prefix `C` of a type projection `C#A`. Type projection on abstract types is no longer supported since it is unsound.
75
-
-[Multiversal Equality](contextual/multiversal-equality.md) implements an "opt-in" scheme to rule out nonsensical comparisons with `==` and `!=`.
75
+
-[Multiversal equality](contextual/multiversal-equality.md) implements an "opt-in" scheme to rule out nonsensical comparisons with `==` and `!=`.
makes method application syntax uniform across code bases.
78
78
@@ -147,10 +147,10 @@ Only a few programs should require changes, but some necessary changes might be
147
147
These are additions to the language that make it more powerful or pleasant to use.
148
148
149
149
-[Enums](enums/enums.md) provide concise syntax for enumerations and [algebraic data types](enums/adts.md).
150
-
-[Parameter Untupling](other-new-features/parameter-untupling.md) avoids having to use `case` for tupled parameter destructuring.
151
-
-[Dependent Function Types](new-types/dependent-function-types.md) generalize dependent methods to dependent function values and types.
152
-
-[Polymorphic Function Types](https://github.com/lampepfl/dotty/pull/4672) generalize polymorphic methods to dependent function values and types. _Current status_: There is a proposal, and a prototype implementation, but the implementation has not been finalized or merged yet.
153
-
-[Kind Polymorphism](other-new-features/kind-polymorphism.md) allows the definition of operators working equally on types and type constructors.
150
+
-[Parameter untupling](other-new-features/parameter-untupling.md) avoids having to use `case` for tupled parameter destructuring.
151
+
-[Dependent function types](new-types/dependent-function-types.md) generalize dependent methods to dependent function values and types.
152
+
-[Polymorphic function types](https://github.com/lampepfl/dotty/pull/4672) generalize polymorphic methods to dependent function values and types. _Current status_: There is a proposal, and a prototype implementation, but the implementation has not been finalized or merged yet.
153
+
-[Kind polymorphism](other-new-features/kind-polymorphism.md) allows the definition of operators working equally on types and type constructors.
154
154
155
155
**Status: mixed**
156
156
@@ -168,10 +168,10 @@ It's worth noting that macros were never included in the Scala 2 language specif
168
168
169
169
To enable porting most uses of macros, we are experimenting with the advanced language constructs listed below. These designs are more provisional than the rest of the proposed language constructs for Scala 3.0. There might still be some changes until the final release. Stabilizing the feature set needed for metaprogramming is our first priority.
170
170
171
-
-[Match Types](new-types/match-types.md) allow computation on types.
171
+
-[Match types](new-types/match-types.md) allow computation on types.
172
172
-[Inline](metaprogramming/inline.md) provides
173
173
by itself a straightforward implementation of some simple macros and is at the same time an essential building block for the implementation of complex macros.
174
-
-[Quotes and Splices](metaprogramming/macros.md) provide a principled way to express macros and staging with a unified set of abstractions.
174
+
-[Quotes and splices](metaprogramming/macros.md) provide a principled way to express macros and staging with a unified set of abstractions.
175
175
-[Type class derivation](contextual/derivation.md) provides an in-language implementation of the `Gen` macro in Shapeless and other foundational libraries. The new implementation is more robust, efficient and easier to use than the macro.
176
176
-[Implicit by-name parameters](contextual/implicit-by-name-parameters.md) provide a more robust in-language implementation of the `Lazy` macro in Shapeless.
0 commit comments