We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ba44ae + 6b9f034 commit adcbfd0Copy full SHA for adcbfd0
library/src/scala/Tuple.scala
@@ -8,16 +8,16 @@ import compiletime.ops.int._
8
sealed trait Tuple extends Product {
9
import Tuple._
10
11
- /** Create a copy this tuple as an Array */
+ /** Create a copy of this tuple as an Array */
12
inline def toArray: Array[Object] =
13
runtime.Tuples.toArray(this)
14
15
- /** Create a copy this tuple as a List */
+ /** Create a copy of this tuple as a List */
16
inline def toList: List[Union[this.type]] =
17
this.productIterator.toList
18
.asInstanceOf[List[Union[this.type]]]
19
20
- /** Create a copy this tuple as an IArray */
+ /** Create a copy of this tuple as an IArray */
21
inline def toIArray: IArray[Object] =
22
runtime.Tuples.toIArray(this)
23
0 commit comments