Skip to content

Commit

Permalink
Improved README
Browse files Browse the repository at this point in the history
  • Loading branch information
R533-Code committed Sep 18, 2024
1 parent a7e20df commit 5a8b0dd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ These include portable bit-fields, endianness utilities, io, argument parsing an
| `Expect` | Expected vocabulary type with monadic operations || More unit tests could be added. |
| | | |
| Unicode Counting and Indexing | Provides `countlen`, `unitlen`, `strlen`, `index_front`, `index_back` Unicode aware functions. || More unit tests could be added. |
| Unicode SIMD Utilities | Provides SIMD functions to optimize `strlen` and `unitlen`. | ⚠️ | For now, `x86_64` versions are provided with little to no `ARM NEON` support. |
| Unicode SIMD Utilities | Provides SIMD functions to optimize `strlen` and `unitlen`. | | See [table below](#Unicode-SIMD-Utilities:) for supported architectures. |
| Unicode Aware `StringView` | View over Unicode data in any of `UTF8`, `UTF16-[BL]E`,`UTF32-[BL]E`. || A type-erased `StringView` could also be added, whose encoding is determined at runtime. |
| Unicode Aware `String` | Contiguous Unicode aware `String` with `SSO`, `count` and `middle` caching, and const segment optimization. || The implementation is a work in progress. |
| | | |
Expand Down
2 changes: 1 addition & 1 deletion libraries/Catch2
Submodule Catch2 updated 62 files
+1 −1 CMakeLists.txt
+1 −2 docs/contributing.md
+21 −0 docs/release-notes.md
+9 −2 extras/Catch.cmake
+41 −87 extras/catch_amalgamated.cpp
+113 −71 extras/catch_amalgamated.hpp
+1 −1 meson.build
+1 −1 src/CMakeLists.txt
+1 −1 src/catch2/benchmark/catch_outlier_classification.hpp
+1 −1 src/catch2/catch_assertion_result.cpp
+1 −1 src/catch2/catch_message.hpp
+20 −16 src/catch2/catch_session.cpp
+6 −10 src/catch2/catch_test_case_info.cpp
+4 −2 src/catch2/catch_test_case_info.hpp
+1 −1 src/catch2/catch_timer.cpp
+1 −1 src/catch2/catch_translate_exception.hpp
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+1 −2 src/catch2/interfaces/catch_interfaces_capture.hpp
+2 −2 src/catch2/internal/catch_assertion_handler.cpp
+2 −2 src/catch2/internal/catch_assertion_handler.hpp
+1 −1 src/catch2/internal/catch_clara.cpp
+0 −6 src/catch2/internal/catch_context.cpp
+9 −4 src/catch2/internal/catch_context.hpp
+5 −6 src/catch2/internal/catch_decomposer.hpp
+15 −12 src/catch2/internal/catch_is_permutation.hpp
+3 −3 src/catch2/internal/catch_lazy_expr.hpp
+3 −1 src/catch2/internal/catch_random_integer_helpers.hpp
+0 −26 src/catch2/internal/catch_result_type.cpp
+16 −7 src/catch2/internal/catch_result_type.hpp
+2 −2 src/catch2/internal/catch_run_context.cpp
+1 −1 src/catch2/internal/catch_run_context.hpp
+5 −7 src/catch2/internal/catch_test_macro_impl.hpp
+1 −1 src/catch2/internal/catch_test_registry.cpp
+4 −2 src/catch2/internal/catch_test_registry.hpp
+8 −8 src/catch2/internal/catch_uniform_integer_distribution.hpp
+2 −22 src/catch2/internal/catch_xmlwriter.cpp
+15 −4 src/catch2/internal/catch_xmlwriter.hpp
+8 −0 src/catch2/matchers/catch_matchers_range_equals.hpp
+8 −4 src/catch2/matchers/internal/catch_matchers_impl.hpp
+1 −1 src/catch2/meson.build
+1 −0 tests/SelfTest/Baselines/automake.sw.approved.txt
+1 −0 tests/SelfTest/Baselines/automake.sw.multi.approved.txt
+8 −2 tests/SelfTest/Baselines/compact.sw.approved.txt
+8 −2 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+2 −2 tests/SelfTest/Baselines/console.std.approved.txt
+38 −2 tests/SelfTest/Baselines/console.sw.approved.txt
+38 −2 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+2 −1 tests/SelfTest/Baselines/junit.sw.approved.txt
+2 −1 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+1 −0 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+1 −0 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+13 −1 tests/SelfTest/Baselines/tap.sw.approved.txt
+13 −1 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+2 −0 tests/SelfTest/Baselines/teamcity.sw.approved.txt
+2 −0 tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt
+53 −2 tests/SelfTest/Baselines/xml.sw.approved.txt
+53 −2 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+15 −0 tests/SelfTest/IntrospectiveTests/Clara.tests.cpp
+1 −1 tests/TestScripts/testBazelReporter.py
+1 −2 tools/scripts/buildAndTest.cmd
+1 −2 tools/scripts/buildAndTest.sh
2 changes: 1 addition & 1 deletion libraries/zpp_bits
Submodule zpp_bits updated 1 files
+1 −1 zpp_bits.h

0 comments on commit 5a8b0dd

Please sign in to comment.