Skip to content

Commit 32198f2

Browse files
committed
updated docs for convert
1 parent d92f120 commit 32198f2

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

docs/StardustDocs/topics/convert.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,20 @@ df.convert { name }.asFrame { it.add("fullName") { "$firstName $lastName" } }
3737
<!---END-->
3838

3939
`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`
4443
* `Short`
44+
* `Int` (and `Char`)
45+
* `Long`
4546
* `Float`
47+
* `Double`
4648
* `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)
5154

5255
<!---FUN convertTo-->
5356

0 commit comments

Comments
 (0)