Skip to content

Commit 1d6ccd7

Browse files
committed
Trigger new date
1 parent fa72c6e commit 1d6ccd7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

_posts/2020-10-21-explicit-term-inference-in-scala-3.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ Some experience is required when reading this code to understand that its only g
101101
add a couple of methods to `List[Try[A]]`.
102102

103103
### Find out more
104+
104105
You can find more information about extension methods on [the dedicated documentation page](http://dotty.epfl.ch/docs/reference/contextual/extension-methods.html).
105106
I also suggest that you read how they complement another new Scala 3 feature: [opaque types](https://dotty.epfl.ch/docs/reference/other-new-features/opaques.html).
106107
Later in this post we will see how they simplify a very common pattern: typeclasses.
@@ -281,9 +282,11 @@ The warning can be silenced by adding `import scala.language.implicitConversions
281282
the message suggests.
282283

283284
### Find out more
285+
284286
You can learn more about this feature in the [documentation](https://dotty.epfl.ch/docs/reference/contextual/conversions.html).
285287

286288
### How was this done in Scala 2?
289+
287290
Scala 2 relied on `implicit` defs and `implicit` function values to implement this pattern:
288291

289292
```scala

0 commit comments

Comments
 (0)