Release 0.3.0
What's new?
Features:
- Wrap
FloatList
,BooleanList
andIntegerList
and their methods intoUltraFastList
, and attributedtype
could be specified to choose which type to use. - Overload add/sub/mul/div operators, and add a new example to demonstrate how to use these operators.
- Implement
get
method, and overload__str__
and__getitem__
methods
Misc:
- Add type checking for all the test cases in
test_base.py
. - Integrate code style tests and unit tests in
/tests/run.sh
- Split rust files
lib.rs
andlist.rs
intobase.rs
,numeric.rs
,boolean.rs
,integer.rs
,float.rs
,lib.rs
- Split test files
test.py
intotest_base.py
andtest_numerical.py
. - Add some examples to demonstrate how to use
ulist
. - Add rust related files to
.gitignore
.