@@ -132,6 +132,10 @@ internal interface ConvertDocs {
132
132
* * [LocalDateTime], [LocalDate], [LocalTime],
133
133
* `Instant` ([kotlinx.datetime][DeprecatedInstant], [kotlin.time][StdlibInstant], and [java.time]),
134
134
* * [URL], [IMG], [IFRAME].
135
+ *
136
+ * __NOTE__: Conversion between [Int] and [Char] is done by UTF-16 [Char.code].
137
+ * To convert [Char]->[Int] the way it is written, use [parse()][parse] instead, or,
138
+ * in either case, use [String] as intermediary type.
135
139
*/
136
140
interface SupportedTypes
137
141
@@ -362,7 +366,7 @@ public class Convert<T, out C>(
362
366
* preserving their original names and positions within the [DataFrame].
363
367
*
364
368
* The target type is provided as a reified type argument.
365
- * For the full list of supported types, see [ConvertDocs.SupportedTypes].
369
+ * For the full list of supported types, see [SupportedTypes][ ConvertDocs.SupportedTypes].
366
370
*
367
371
* For more information: {@include [DocumentationUrls.Convert]}
368
372
*
@@ -390,7 +394,7 @@ public class Convert<T, out C>(
390
394
* preserving their original names and positions within the [DataFrame].
391
395
*
392
396
* The target type is provided as a [KType].
393
- * For the full list of supported types, see [ConvertDocs.SupportedTypes].
397
+ * For the full list of supported types, see [SupportedTypes][ ConvertDocs.SupportedTypes].
394
398
*
395
399
* For more information: {@include [DocumentationUrls.Convert]}
396
400
*
@@ -554,7 +558,7 @@ public inline fun <T, C, reified R> Convert<T, C>.perRowCol(
554
558
*
555
559
* The target type is provided as a reified type argument.
556
560
*
557
- * For the full list of supported types, see [ConvertDocs.SupportedTypes].
561
+ * For the full list of supported types, see [SupportedTypes][ ConvertDocs.SupportedTypes].
558
562
*
559
563
* @param [C] The target type to convert values to.
560
564
* @return A new [DataColumn] with the values converted to type [C].
@@ -564,7 +568,7 @@ public inline fun <reified C> AnyCol.convertTo(): DataColumn<C> = convertTo(type
564
568
/* *
565
569
* Converts values in this column to the specified [type].
566
570
*
567
- * For the full list of supported types, see [ConvertDocs.SupportedTypes].
571
+ * For the full list of supported types, see [SupportedTypes][ ConvertDocs.SupportedTypes].
568
572
*
569
573
* @param type The target type, provided as a [KType], to convert values to.
570
574
* @return A new [DataColumn] with the values converted to [type].
0 commit comments