Update manual.md (#23393)

adding link to generic == for tuples in Open and Closed symbols example
This commit is contained in:
arkanoid87
2024-03-16 06:23:44 +01:00
committed by GitHub
parent f639cf063f
commit cbf48a253f

View File

@@ -5863,7 +5863,7 @@ at definition and the context at instantiation are considered:
echo a == b # works!
```
In the example, the generic `==` for tuples (as defined in the system module)
In the example, the [generic `==` for tuples](system.html#%3D%3D%2CT%2CT_2) (as defined in the system module)
uses the `==` operators of the tuple's components. However, the `==` for
the `Index` type is defined *after* the `==` for tuples; yet the example
compiles as the instantiation takes the currently defined symbols into account