dtype-next
dtype-next copied to clipboard
sorted output for `tech.v3.datatype.casting/all-datatypes`
It would be helpful to sort the list of types for readability:
(tech.v3.datatype.casting/all-datatypes)
;; =>
(:int32
:int16
:float32
:float64
:int64
:uint64
:string
:uint16
:int8
:uint32
:keyword
:decimal
:uuid
:boolean
:object
:char
:uint8)
(sort
(tech.v3.datatype.casting/all-datatypes))
;; =>
(:boolean
:char
:decimal
:float32
:float64
:int16
:int32
:int64
:int8
:keyword
:object
:string
:uint16
:uint32
:uint64
:uint8
:uuid)