Skip to content

Commit 437d02a

Browse files
authored
Merge pull request #11016 from michelou/scala3-docs
[docs/reference] more fixes in Markdown files
2 parents 8effbc4 + f72855e commit 437d02a

24 files changed

+141
-99
lines changed

docs/docs/reference/changed-features/eta-expansion-spec.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def m(x: Int, y: String) = ???
1818
val f = m // becomes: val f = (x: Int, y: String) => m(x, y)
1919
```
2020

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.
2222

2323
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.
2424

docs/docs/reference/changed-features/implicit-conversions-spec.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ Scala 3.
8787

8888
## Motivation for the changes
8989

90-
The introduction of `Conversion` in Scala 3 and the decision to
91-
restrict implicit values of this type to be considered as potential
92-
views comes from the desire to remove surprising behavior from the
93-
language:
90+
The introduction of [`scala.Conversion`](https://github.com/lampepfl/dotty/blob/master/library/src/scala/Conversion.scala)
91+
in Scala 3 and the decision to restrict implicit values of this type to be
92+
considered as potential views comes from the desire to remove surprising
93+
behavior from the language:
9494

9595
```scala
9696
implicit val m: Map[Int, String] = Map(1 -> "abc")

docs/docs/reference/changed-features/operators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "Rules for Operators"
66
The rules for infix operators have changed in some parts:
77

88
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,
1010
a syntax change allows infix operators to be written on the left in a multi-line expression.
1111

1212
## The `infix` Modifier

docs/docs/reference/changed-features/structural-types-spec.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ RefineStat ::= ‘val’ VarDcl | ‘def’ DefDcl | ‘type’ {nl} TypeDcl
1414

1515
## Implementation of structural types
1616

17-
The standard library defines a universal marker trait `Selectable` in the package `scala`:
17+
The standard library defines a universal marker trait
18+
[`scala.Selectable`](https://github.com/lampepfl/dotty/blob/master/library/src/scala/Selectable.scala):
1819

1920
```scala
2021
trait Selectable extends Any
@@ -78,7 +79,8 @@ and `Rs` are structural refinement declarations, and given `v.a` of type `U`, we
7879
type, an error is emitted.
7980

8081
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
83+
[extension methods](../contextual/extension-methods.md).
8284

8385
## Limitations of structural types
8486

docs/docs/reference/contextual/context-functions-spec.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Context function types associate to the right, e.g.
2020
Context function types are shorthands for class types that define `apply`
2121
methods with context parameters. Specifically, the `N`-ary function type
2222
`T1, ..., TN => R` is a shorthand for the class type
23-
`ContextFunctionN[T1 , ... , TN, R]`. Such class types are assumed to have the following definitions, for any value of `N >= 1`:
23+
`ContextFunctionN[T1, ..., TN, R]`. Such class types are assumed to have the following definitions, for any value of `N >= 1`:
2424

2525
```scala
2626
package scala
27-
trait ContextFunctionN[-T1 , ... , -TN, +R]:
28-
def apply(using x1: T1 , ... , xN: TN): R
27+
trait ContextFunctionN[-T1, ..., -TN, +R]:
28+
def apply(using x1: T1, ..., xN: TN): R
2929
```
3030

3131
Context function types erase to normal function types, so these classes are

docs/docs/reference/contextual/extension-methods.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ the right-associative operator `+:` to an extension method. This is analogous
6060
to the implementation of right binding operators as normal methods. The Scala
6161
compiler preprocesses an infix operation `x +: xs` to `xs.+:(x)`, so the extension
6262
method ends up being applied to the sequence as first argument (in other words, the
63-
two swaps cancel each other out). See [here for details](./right-associative-extension-methods.html).
63+
two swaps cancel each other out). See [here for details](./right-associative-extension-methods.md).
6464

6565
### Generic Extensions
6666

docs/docs/reference/contextual/implicit-by-name-parameters.md

-7
This file was deleted.

docs/docs/reference/contextual/import-delegate.md

-7
This file was deleted.

docs/docs/reference/contextual/import-implied.md

-6
This file was deleted.

docs/docs/reference/contextual/inferable-by-name-parameters.md

-6
This file was deleted.

docs/docs/reference/contextual/inferable-params.md

-6
This file was deleted.

docs/docs/reference/contextual/instance-defs.md

-6
This file was deleted.

docs/docs/reference/contextual/multiversal-equality.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,30 @@ If `y` gets compared to other values of type `T`,
2323
the program will still typecheck, since values of all types can be compared with each other.
2424
But it will probably give unexpected results and fail at runtime.
2525

26-
Multiversal equality is an opt-in way to make universal equality
27-
safer. It uses a binary type class `CanEqual` to indicate that values of
28-
two given types can be compared with each other.
26+
Multiversal equality is an opt-in way to make universal equality safer.
27+
It uses a binary type class [`scala.CanEqual`](https://github.com/lampepfl/dotty/blob/master/library/src/scala/CanEqual.scala)
28+
to indicate that values of two given types can be compared with each other.
2929
The example above would not typecheck if `S` or `T` was a class
3030
that derives `CanEqual`, e.g.
31+
3132
```scala
3233
class T derives CanEqual
3334
```
35+
3436
Alternatively, one can also provide a `CanEqual` given instance directly, like this:
37+
3538
```scala
3639
given CanEqual[T, T] = CanEqual.derived
3740
```
41+
3842
This definition effectively says that values of type `T` can (only) be
3943
compared to other values of type `T` when using `==` or `!=`. The definition
4044
affects type checking but it has no significance for runtime
4145
behavior, since `==` always maps to `equals` and `!=` always maps to
4246
the negation of `equals`. The right hand side `CanEqual.derived` of the definition
4347
is a value that has any `CanEqual` instance as its type. Here is the definition of class
4448
`CanEqual` and its companion object:
49+
4550
```scala
4651
package scala
4752
import annotation.implicitNotFound
@@ -63,7 +68,9 @@ given CanEqual[B, B] = CanEqual.derived
6368
given CanEqual[A, B] = CanEqual.derived
6469
given CanEqual[B, A] = CanEqual.derived
6570
```
66-
The `scala.CanEqual` object defines a number of `CanEqual` given instances that together
71+
72+
The [`scala.CanEqual`](https://github.com/lampepfl/dotty/blob/master/library/src/scala/CanEqual.scala)
73+
object defines a number of `CanEqual` given instances that together
6774
define a rule book for what standard types can be compared (more details below).
6875

6976
There is also a "fallback" instance named `canEqualAny` that allows comparisons
@@ -73,7 +80,8 @@ over all types that do not themselves have a `CanEqual` given. `canEqualAny` is
7380
def canEqualAny[L, R]: CanEqual[L, R] = CanEqual.derived
7481
```
7582

76-
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
7785
type `CanEqual[L, R]`, unless `L` or `R` have `CanEqual` instances
7886
defined on them, or the language feature `strictEquality` is enabled.
7987

@@ -90,16 +98,21 @@ or with a command line option `-language:strictEquality`.
9098
## Deriving CanEqual Instances
9199

92100
Instead of defining `CanEqual` instances directly, it is often more convenient to derive them. Example:
101+
93102
```scala
94103
class Box[T](x: T) derives CanEqual
95104
```
105+
96106
By the usual rules of [type class derivation](./derivation.md),
97107
this generates the following `CanEqual` instance in the companion object of `Box`:
108+
98109
```scala
99110
given [T, U](using CanEqual[T, U]): CanEqual[Box[T], Box[U]] =
100111
CanEqual.derived
101112
```
113+
102114
That is, two boxes are comparable with `==` or `!=` if their elements are. Examples:
115+
103116
```scala
104117
new Box(1) == new Box(1L) // ok since there is an instance for `CanEqual[Int, Long]`
105118
new Box(1) == new Box("a") // error: can't compare

docs/docs/reference/contextual/query-types-spec.md

-6
This file was deleted.

docs/docs/reference/contextual/query-types.md

-6
This file was deleted.

docs/docs/reference/contextual/right-associative-extension-methods.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ This is then followed by `def`, the method name, and possibly further parameters
1818
(using d: D) // <-- trailingUsing
1919
def +:: (y: Y)(using e: E)(z: Z) // <-- otherParams
2020
```
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
2325
single parameter. In the example above, that parameter is `(y: Y)`.
2426

2527
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,
2830
the expansion of right-associative extension methods performs an analogous parameter swap. More precisely, if `otherParams` consists of a single parameter
2931
`rightParam` followed by `remaining`, the total parameter sequence
3032
of the extension method's expansion is:
33+
3134
```
3235
leadingUsing rightParam trailingUsing extensionParam remaining
3336
```
37+
3438
For instance, the `+::` method above would become
39+
3540
```scala
3641
<extension> def +:: (using a: A, b: B)(using c: C)
3742
(y: Y)
3843
(using d: D)
3944
(x: X)
4045
(using e: E)(z: Z)
4146
```
47+
4248
This expansion has to be kept in mind when writing right-associative extension
4349
methods with inter-parameter dependencies.
4450

docs/docs/reference/dropped-features/weak-conformance-spec.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ layout: doc-page
33
title: "Dropped: Weak Conformance - More Details"
44
---
55

6-
To simplify the underlying type theory, Scala 3 drops the notion of weak
7-
conformance altogether. Instead, it provides more flexibility when
6+
To simplify the underlying type theory, Scala 3 drops the notion of
7+
[*weak conformance*](https://www.scala-lang.org/files/archive/spec/2.13/03-types.html#weak-conformance)
8+
altogether. Instead, it provides more flexibility when
89
assigning a type to a constant expression. The new rule is:
910

1011
- If a list of expressions `Es` appears as one of

docs/docs/reference/features-classification.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ These new constructs directly model core features of [DOT](https://www.scala-lan
2020
- [Union types](new-types/union-types.md),
2121
- [Type lambdas](new-types/type-lambdas.md),
2222
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.
2424

2525
**Status: essential**
2626

@@ -37,7 +37,7 @@ These constructs replace existing constructs with the aim of making the language
3737
- [Trait parameters](other-new-features/trait-parameters.md) replace [early initializers](dropped-features/early-initializers.md) with a more generally useful construct.
3838
- [Given instances](contextual/givens.md)
3939
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.
4141
- [Extension methods](contextual/extension-methods.md) replace implicit classes with a clearer and simpler mechanism.
4242
- [Opaque type aliases](other-new-features/opaques.md) replace most uses
4343
of value classes while guaranteeing absence of boxing.
@@ -72,7 +72,7 @@ These constructs are restricted to make the language safer.
7272
- [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.
7373
- [Given Imports](contextual/import-delegate.md): implicits now require a special form of import, to make the import clearly visible.
7474
- [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 `!=`.
7676
- [infix](https://github.com/lampepfl/dotty/pull/5975)
7777
makes method application syntax uniform across code bases.
7878

@@ -147,10 +147,10 @@ Only a few programs should require changes, but some necessary changes might be
147147
These are additions to the language that make it more powerful or pleasant to use.
148148

149149
- [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.
154154

155155
**Status: mixed**
156156

@@ -168,10 +168,10 @@ It's worth noting that macros were never included in the Scala 2 language specif
168168

169169
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.
170170

171-
- [Match Types](new-types/match-types.md) allow computation on types.
171+
- [Match types](new-types/match-types.md) allow computation on types.
172172
- [Inline](metaprogramming/inline.md) provides
173173
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.
175175
- [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.
176176
- [Implicit by-name parameters](contextual/implicit-by-name-parameters.md) provide a more robust in-language implementation of the `Lazy` macro in Shapeless.
177177

docs/docs/reference/new-types/dependent-function-types-spec.md

+75-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,82 @@ same way that other functions do, see
4242

4343
## Examples
4444

45-
- [depfuntype.scala](https://github.com/lampepfl/dotty/blob/master/tests/pos/depfuntype.scala)
45+
The example below defines a trait `C` and the two dependent function types
46+
`DF` and `IDF` and prints the results of the respective function applications:
4647

47-
- [eff-dependent.scala](https://github.com/lampepfl/dotty/blob/master/tests/run/eff-dependent.scala)
48+
[depfuntype.scala]: https://github.com/lampepfl/dotty/blob/master/tests/pos/depfuntype.scala
49+
50+
```scala
51+
trait C { type M; val m: M }
52+
53+
type DF = (x: C) => x.M
54+
55+
type IDF = (x: C) ?=> x.M
56+
57+
@main def test =
58+
val c = new C { type M = Int; val m = 3 }
59+
60+
val depfun: DF = (x: C) => x.m
61+
val t = depfun(c)
62+
println(s"t=$t") // prints "t=3"
63+
64+
val idepfun: IDF = summon[C].m
65+
val u = idepfun(using c)
66+
println(s"u=$u") // prints "u=3"
67+
68+
```
69+
70+
In the following example the depend type `f.Eff` refers to the effect type `CanThrow`:
71+
72+
[eff-dependent.scala]: https://github.com/lampepfl/dotty/blob/master/tests/run/eff-dependent.scala
73+
74+
```scala
75+
trait Effect
76+
77+
// Type X => Y
78+
abstract class Fun[-X, +Y]:
79+
type Eff <: Effect
80+
def apply(x: X): Eff ?=> Y
81+
82+
class CanThrow extends Effect
83+
class CanIO extends Effect
84+
85+
given ct: CanThrow = new CanThrow
86+
given ci: CanIO = new CanIO
87+
88+
class I2S extends Fun[Int, String]:
89+
type Eff = CanThrow
90+
def apply(x: Int) = x.toString
91+
92+
class S2I extends Fun[String, Int]:
93+
type Eff = CanIO
94+
def apply(x: String) = x.length
95+
96+
// def map(f: A => B)(xs: List[A]): List[B]
97+
def map[A, B](f: Fun[A, B])(xs: List[A]): f.Eff ?=> List[B] =
98+
xs.map(f.apply)
99+
100+
// def mapFn[A, B]: (A => B) -> List[A] -> List[B]
101+
def mapFn[A, B]: (f: Fun[A, B]) => List[A] => f.Eff ?=> List[B] =
102+
f => xs => map(f)(xs)
103+
104+
// def compose(f: A => B)(g: B => C)(x: A): C
105+
def compose[A, B, C](f: Fun[A, B])(g: Fun[B, C])(x: A):
106+
f.Eff ?=> g.Eff ?=> C =
107+
g(f(x))
108+
109+
// def composeFn: (A => B) -> (B => C) -> A -> C
110+
def composeFn[A, B, C]:
111+
(f: Fun[A, B]) => (g: Fun[B, C]) => A => f.Eff ?=> g.Eff ?=> C =
112+
f => g => x => compose(f)(g)(x)
113+
114+
@main def test =
115+
val i2s = new I2S
116+
val s2i = new S2I
117+
118+
assert(mapFn(i2s)(List(1, 2, 3)).mkString == "123")
119+
assert(composeFn(i2s)(s2i)(22) == 2)
120+
```
48121

49122
### Type Checking
50123

0 commit comments

Comments
 (0)