Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6077016 + 686da14 commit 95b1c49Copy full SHA for 95b1c49
README.md
@@ -124,7 +124,7 @@ iPy compatible "Overloads", on a class:
124
from System import String, Char, Int32
125
126
s = String.Overloads[Char, Int32]('A', 10)
127
-s = String.__overloads[__Char, Int32]('A', 10)
+s = String.__overloads__[Char, Int32]('A', 10)
128
```
129
130
## Using Generics
@@ -242,7 +242,7 @@ from System import Console
242
243
Console.WriteLine.Overloads[bool](true)
244
Console.WriteLine.Overloads[str]("true")
245
-Console.WriteLine.__overloads[__int](42)
+Console.WriteLine.__overloads__[int](42)
246
247
248
Similarly, generic methods may be bound at runtime using the subscript
0 commit comments