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/other-new-features/opaques.md
+24-12
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,9 @@ end MyMath
33
33
34
34
This introduces `Logarithm` as a new abstract type, which is implemented as `Double`.
35
35
The fact that `Logarithm` is the same as `Double` is only known in the scope where
36
-
`Logarithm` is defined which in the above example corresponds to the object `MyMath`.
37
-
Or in other words, within the scope it is treated as type alias, but this is opaque to the outside world
38
-
where in consequence `Logarithm` is seen as an abstract type and has nothing to do with `Double`.
36
+
`Logarithm` is defined, which in the above example corresponds to the object `MyMath`.
37
+
Or in other words, within the scope, it is treated as a type alias, but this is opaque to the outside world
38
+
where, in consequence,`Logarithm` is seen as an abstract type that has nothing to do with `Double`.
39
39
40
40
The public API of `Logarithm` consists of the `apply` and `safe` methods defined in the companion object.
41
41
They convert from `Double`s to `Logarithm` values. Moreover, an operation `toDouble` that converts the other way, and operations `+` and `*` are defined as extension methods on `Logarithm` values.
0 commit comments