Release 0.7.0
What's new?
Features:
- Support windows users;
- Implement
StringList
; - Implement methods such as
__repr__
,__str__
,__len__
,append
,copy
,counter
,cycle
,get
,pop
,repeat
,set
,size
,to_list
andunion
. By implementingList
trait forStringList
. - Implement
astype
method for type conversion from or to aStringList
; - Implement
apply
,case
,where
andunion_all
methods; - Implement
counter
method forNonFloatList
.
Doc:
- Update the examples of
Readme.md
; - Add ulist's introduction and features in
Readme.md
;
Misc:
- Rename the scala parameter
num
aselem
because we haveStringList
now, and the nameelement
makes more sense than anumber
; - Rename
union
method asunion_all
; - Implement
NonFloatList
trait for methods abstraction.