Conversão de datatypes:
action! to
Converte de um datatype! para outro. Por exemplo, um integer! para uma string! , um float! para um integer! e mesmo uma string! para um number!.
>> to integer! 3.4
== 3
>> to float! 23
== 23.0
>> to string! 23.2
== "23.2"
>> to integer! "34"
== 34
function! to-time
Converte valores para o datatype 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
Converte dois integer! ou float! em um pair!
>> as-pair 11 53
== 11x53
>> as-pair 3.2 5.67
== 3x5
>> as-pair 88 12.7
== 88x12
function! to-binary
Converete para um tipo binary! . Me parece que não é um conversor de bases, apenas um conversor de datatype.
>> to-binary 8
== #{00000008}
>> to-binary 33
== #{00000021}