Releases: chen-qingyu/pyincpp
Releases · chen-qingyu/pyincpp
v1.6.0
- Significant performance improvements.
- Promote
String::to_integer()
return type fromlong long
toInteger
. - Add
Integer::to_integer<T>()
. - Refine doc-comments.
- Cleaner code.
v1.5.0
- Add
insert()
andremove()
forSet
that can easily determine from the return value whether the element operation was successful or not. - Improve performance.
- Decoupling modules and eliminating redundant code.
- Many details and document improvements.
v1.4.1
Add print ',' for Tuple
of 1 item, e.g.: (1,)
, consistent with Python.
v1.4.0
- Add
items()
forMap
. - Add
<<()
forPair
and export it.
v1.3.3
- Optimize the speed of
String
andInteger
. - Reduce the symbols in namespace
pyincpp
.
v1.3.2
Rename pytype -> pyincpp for googleable.
v1.3.1
- Rename: Pytype -> PyType.
- Refine readme detail.
- Make
make_tuple
copy instead move elements. - Improved compatibility.
v1.3.0
Tuple
s of different sizes can be compared.- Add benchmark with Catch2.
- Replace GoogleTest with Catch2 and refactor the tests.
- Add an English readme.
v1.2.0
Add format()
for String
.
v1.1.0
Add make_tuple()
.