Konverze datových typů: 


action! to

Konvertuje jeden datový typ na druhý, např.  integer! na string!float! na integer! a dokonce string! na number!.

>> to integer! 3.4
== 3

>> to float! 23
== 23.0

>> to string! 23.2
== "23.2"

>> to integer! "34"
== 34


function! to-time

Konvertuje hodnoty na datový typ time!.

>> to-time [22 55 48]
== 22:55:48

>> to-time [22 65 70]
== 23:06:10

>> to-time "11:15"
== 11:15:00

native! as-pair

Konvertuje dvě čísla typu integer! nebo float! na pair!

>> as-pair 11 53
== 11x53

>> as-pair 3.2 5.67
== 3x5

>> as-pair 88 12.7
== 88x12

function! to-binary

Konvertuje argument na hodnotu typu binary!.


>> to-binary 8
== #{00000008}

>> to-binary 33
== #{00000021}