dtype-next icon indicating copy to clipboard operation
dtype-next copied to clipboard

sorted output for `tech.v3.datatype.casting/all-datatypes`

Open daslu opened this issue 1 year ago • 0 comments

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)

daslu avatar Apr 06 '24 11:04 daslu