-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Imroves iterator and lookup speeds. New tests added.
- Loading branch information
mikee47
committed
Apr 10, 2024
1 parent
d75b405
commit 6ee6e55
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule FlashString
updated
20 files
+20 −0 | .github/workflows/ci-dispatch.yml | |
+7 −0 | .github/workflows/ci-push.yml | |
+18 −18 | src/ObjectBase.cpp | |
+26 −21 | src/String.cpp | |
+2 −0 | src/include/FlashString/Array.hpp | |
+23 −16 | src/include/FlashString/Object.hpp | |
+17 −35 | src/include/FlashString/ObjectBase.hpp | |
+10 −7 | src/include/FlashString/ObjectIterator.hpp | |
+17 −27 | src/include/FlashString/String.hpp | |
+30 −14 | src/include/FlashString/Vector.hpp | |
+1 −0 | src/include/FlashString/config.hpp | |
+1 −1 | test/app/array.cpp | |
+451 −0 | test/app/data.cpp | |
+7 −0 | test/app/data.h | |
+6 −6 | test/app/map.cpp | |
+2 −1 | test/app/modules.h | |
+160 −0 | test/app/speed.cpp | |
+9 −9 | test/app/string.cpp | |
+5 −1 | test/app/vector.cpp | |
+16 −0 | test/gen.py |