File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,20 @@ df.convert { name }.asFrame { it.add("fullName") { "$firstName $lastName" } }
37
37
<!-- -END-->
38
38
39
39
` convert ` supports automatic type conversions between the following types:
40
- * ` Int `
41
- * ` String `
42
- * ` Double `
43
- * ` Long `
40
+ * ` String ` (uses [ ` parse ` ] ( parse.md ) to convert from ` String ` to other types)
41
+ * ` Boolean `
42
+ * ` Byte `
44
43
* ` Short `
44
+ * ` Int ` (and ` Char ` )
45
+ * ` Long `
45
46
* ` Float `
47
+ * ` Double `
46
48
* ` BigDecimal `
47
- * ` LocalDateTime `
48
- * ` LocalDate `
49
- * ` LocalTime `
50
- * ` Duration `
49
+ * ` BigInteger `
50
+ * ` LocalDateTime ` (kotlinx.datetime and java.time)
51
+ * ` LocalDate ` (kotlinx.datetime and java.time)
52
+ * ` LocalTime ` (kotlinx.datetime and java.time)
53
+ * ` Instant ` (kotlinx.datetime and java.time)
51
54
52
55
<!-- -FUN convertTo-->
53
56
You can’t perform that action at this time.
0 commit comments