mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
* Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Added etl::type_list to etl::observer * Added etl::type_list to etl::nth_type * Added missing 'typename' to type_list nth_type * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Added type_list definitions for nth_type and observer * Added etl::type_list to etl::variant * Updated comments * Addedetl::type~_list to message_router, observer, visitor # Conflicts: # include/etl/observer.h # test/vs2022/etl.vcxproj.filters * Added member type_list type to tuple * Work in progress * Copy changes from other source * Removed unused tests * Fix iter_swap namespace * Add type_list functionality to etl::variant using etl::variant_from_type_list * Add type_list functionality to etl::message_packet using etl::message_packet_from_type_list * Add type_list functionality to etl::message_router using etl::message_router_from_type_list * Add type_list functionality to etl::observer using etl::observer_from_type_list * Add type_list functionality to etl::tuple using etl::tuple_from_type_list * Allow etl::make_index_sequence to be created from an etl::type_list * Add type_list functionality to etl::visitor using etl::visitor_from_type_list * Fix iter_swap namespace * Allow creation of a message_packet with no message types * Allow creation of a message_router with no message types * Updated VS2022 project files * Added missing test files CMakeLists.txt * Fix C++03 compatibility Fixed unused aregument warnings * Synced message_packet generator to updated code * Synced message_router generator to updated code * Synced message_router generator to updated code # Conflicts: # include/etl/generators/message_router_generator.h # include/etl/message_router.h * Fixed missing zero message specialisation for <= C++14 * Fixed missing zero message specialisation for <= C++14 * Fix year_month arithmetic and correct chrono API behavior (#1257) * Fix & add more tests for year_month arithmetic * Minor addtions to previous commit * More missing values to be uninitialized * Update the default constructors to = default and correct default constructor tests accordingly * Fix & add more tests for year_month arithmetic * Minor addtions to previous commit * More missing values to be uninitialized * Update the default constructors to = default and correct default constructor tests accordingly * Restore default constructor behavior for chrono calender * Suppress warnings from std in optimized builds (#1259) When testing with ./run-tests.sh 23 3 10, some warnings from std surfaced which resulted in build errors. * Add template deduction guide for span from vector (#1264) * Create span from vector deduction * Use ivector for deduction. Add vector_ext to test * Add vector pointer to test * Finish tests * Initialize pdata_ext and others * Document how to implement platform specifics (#1262) Some interfaces need to be implemented in every project or platform using the ETL: * etl_get_high_resolution_clock * etl_get_system_clock * etl_get_steady_clock * etl_putchar Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix etl::as_bytes for etl::span<const T> (#1266) A missing 'const' in the etl::as_bytes implementation was causing a compile-time error when etl::as_bytes was called on a span of const values. Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Remove some UB in test_vector_non_trivial.cpp (#1268) Some of the tests' UB are detectable by Gcc15 and thus give a compile error due to warnings-as-error flag. Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Update C++26 deprecated constructs to ensure future standard compliance (#1267) * Update C++26 deprecated constructs to ensure future standard compliance I replaced std::is_trivial with a combination of std::is_trivially_default_constructible and std::is_trivially_copyable. Additionally, I added the required comma before the ellipsis in variadic functions to match updated language specifications. * Some additional is_trivial related changes not found directly when compiling tests in C++26 --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix return value of get_token_list (#1271) Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Fix etl::tuple template signature error in pair assignment operator (#1265) * Fix etl::tuple template signature error in pair assignment operator * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update etl::tuple to explicitly use etl::pair or std::pair in assignment operator * Added tests for etl::tuple assignment from pair --------- Co-authored-by: Bryton Flecker <bflecker@swe.com> Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Remove advance() on static spans (#1281) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Remove advance() on static spans Since the size of a static span is constant, we can't reasonably advance() on it. --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Add missing includes (#1286) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Add missing includes Before this change, the includes needed to be done explicitly by files using basic_string_stream.h, and be included first. This was error prone, especially if includes are reordered (e.g. via the currently defined clang-format rules). --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Move comparison operators of etl::expected to namespace etl (#1287) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Move comparison operators of etl::expected to namespace etl --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Make typed_storage constructor constexpr (#1291) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Make typed_storage constructor constexpr --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Add basic_format_arg constructor for ibasic_string (#1288) * Allow string as format arg * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Added test string escaped * Add temporary string test --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * QR Code for Github * Added etl::visitor_from_type_list * accepts(id) for empty router passes on to a sucessor * Fixed incorrect comment from 'tuple' to 'message_router' * PR review changes * PR review changes * Fixed internal constexptr flag in message_packet * Fixed unused variable in unti test * Added new type_list features Added make_index_sequence_with_offset * Renamed type_list_select_from_sequence to type_list_select_from_index_sequence * Replaced type_list_size<TTypeList>::value with TTypeList::size internally for better clarity. * Added etl::type_list_remove, etl::type_list_remove_if, etl::type_list_unique, etl::type_list_pop_front, etl::type_list_pop_back * Add ref-qualifiers to basic_format_spec (#1292) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * feat: use ref-qualifiers for basic_format_spec Converted the l-value methods to ref-qualified and also added r-value ref-qualified methods. --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Add support for size_t and unsigned long to etl::format (#1290) * Remove AppVeyor build status badge Removed AppVeyor build status badge from README. * Update README.md * Update CONTRIBUTING.md Updated the instructions for contributing. * Fix for issue 1276 "Data corruption in the etl::bip_buffer_spsc_atomic" (#1277) * Reproduce data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Fix data corruption bug in the `etl::bip_buffer_spsc_atomic`. * Add support for size_t and unsigned long to etl::format * Document list of supported types in etl::supported_format_types * Add further types and tests for etl::format --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> Co-authored-by: Sergei <sergej.shirokov@gmail.com> * Deduce underlying storage size when constructing string_ext from char[]. (#1269) * Deduce underlying storage size when constructing string_ext from char[]. This removes the need for passing sizeof(storage) to the constructor. * Add array constructors for the other string types. - u16string_ext - u32string_ext - u8string_ext - wstring_ext * Add additional constructors to match existing API. * Fix inconsistent test argument order. --------- Co-authored-by: John Wellbelove <jwellbelove@users.noreply.github.com> * Added etl::type_list_all_of, etl::type_list_any_of, and etl::type_list_none_of * Added etl::type_list_is_unique * Added type_list_is_empty * indentation fix * Fix merge error * Renamed type_list_prepend & type_list_append to type_list_push_front & type_list_push_back respectively * Added tests for make_index_sequence & make_index_sequence_with_offset * Resolve coderabbit review issues * Resolve coderabbit review issues * Resolve coderabbit review issues * Resolve coderabbit review issues * Added etl::type_list_indices_of_type which create an etl::index_sequence of all of the indexes of a specified type in an etl::type_list * Updated comments * Resolve coderabbit review issues Added index_sequence utility to support type_list utilities. Added additional index_sequence utilities for completeness * Added etl::index_sequence_cat, etl::index_sequence_pop_front, etl::index_sequence_pop_back, etl::index_sequence_at * Fix 'unused variable' error in index_sequence tests --------- Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.co.uk> Co-authored-by: Sergei <sergej.shirokov@gmail.com> Co-authored-by: John Wellbelove <john.wellbelove@etlcpp.com> Co-authored-by: Bo Rydberg <2945606+bolry@users.noreply.github.com> Co-authored-by: Roland Reichwein <Roland.Reichwein@bmw.de> Co-authored-by: Mike Bloom <91038685+mike919192@users.noreply.github.com> Co-authored-by: taltenbach <92919739+taltenbach@users.noreply.github.com> Co-authored-by: Bryton Flecker <fleckerbr@gmail.com> Co-authored-by: Bryton Flecker <bflecker@swe.com> Co-authored-by: Drew Rife <drew.rife95@gmail.com> Co-authored-by: Marco Nilsson <marco@zyax.se> |
||
|---|---|---|
| .. | ||
| Deprecated | ||
| etl_error_handler | ||
| etl_initializer_list | ||
| Performance/unordered_map | ||
| syntax_check | ||
| UnitTest++ | ||
| vs2022 | ||
| .gitattributes | ||
| CMakeLists.txt | ||
| cppcheck_macro_definitions.txt | ||
| data.h | ||
| etl_profile.h | ||
| iterators_for_unit_tests.h | ||
| list_header_files.bat | ||
| list_test_files.bat | ||
| list_test_files.ps1 | ||
| list_test_files.sh | ||
| main.cpp | ||
| maincpp03check.cpp | ||
| meson.build | ||
| murmurhash3.cpp | ||
| murmurhash3.h | ||
| run-syntax-checks.sh | ||
| run-tests.sh | ||
| test_algorithm.cpp | ||
| test_alignment.cpp | ||
| test_array_view.cpp | ||
| test_array_wrapper.cpp | ||
| test_array.cpp | ||
| test_atomic.cpp | ||
| test_base64_RFC2152_decoder.cpp | ||
| test_base64_RFC2152_encoder.cpp | ||
| test_base64_RFC3501_decoder.cpp | ||
| test_base64_RFC3501_encoder.cpp | ||
| test_base64_RFC4648_decoder_with_no_padding.cpp | ||
| test_base64_RFC4648_decoder_with_padding.cpp | ||
| test_base64_RFC4648_encoder_with_no_padding.cpp | ||
| test_base64_RFC4648_encoder_with_padding.cpp | ||
| test_base64_RFC4648_URL_decoder_with_no_padding.cpp | ||
| test_base64_RFC4648_URL_decoder_with_padding.cpp | ||
| test_base64_RFC4648_URL_encoder_with_no_padding.cpp | ||
| test_base64_RFC4648_URL_encoder_with_padding.cpp | ||
| test_binary.cpp | ||
| test_bip_buffer_spsc_atomic.cpp | ||
| test_bit_stream_reader_big_endian.cpp | ||
| test_bit_stream_reader_little_endian.cpp | ||
| test_bit_stream_writer_big_endian.cpp | ||
| test_bit_stream_writer_little_endian.cpp | ||
| test_bit_stream.cpp | ||
| test_bit.cpp | ||
| test_bitset_legacy.cpp | ||
| test_bitset_new_comparisons.cpp | ||
| test_bitset_new_default_element_type.cpp | ||
| test_bitset_new_explicit_single_element_type.cpp | ||
| test_bitset_new_ext_default_element_type.cpp | ||
| test_bitset_new_ext_explicit_single_element_type.cpp | ||
| test_bloom_filter.cpp | ||
| test_bresenham_line.cpp | ||
| test_bsd_checksum.cpp | ||
| test_buffer_descriptors.cpp | ||
| test_byte_stream.cpp | ||
| test_byte.cpp | ||
| test_callback_service.cpp | ||
| test_callback_timer_atomic.cpp | ||
| test_callback_timer_deferred_locked.cpp | ||
| test_callback_timer_interrupt.cpp | ||
| test_callback_timer_locked.cpp | ||
| test_callback_timer.cpp | ||
| test_char_traits.cpp | ||
| test_checksum.cpp | ||
| test_chrono_clocks.cpp | ||
| test_chrono_day.cpp | ||
| test_chrono_duration.cpp | ||
| test_chrono_hh_mm_ss.cpp | ||
| test_chrono_literals.cpp | ||
| test_chrono_month_day_last.cpp | ||
| test_chrono_month_day.cpp | ||
| test_chrono_month_weekday_last.cpp | ||
| test_chrono_month_weekday.cpp | ||
| test_chrono_month.cpp | ||
| test_chrono_operators.cpp | ||
| test_chrono_time_point.cpp | ||
| test_chrono_weekday_indexed.cpp | ||
| test_chrono_weekday_last.cpp | ||
| test_chrono_weekday.cpp | ||
| test_chrono_year_month_day_last.cpp | ||
| test_chrono_year_month_day.cpp | ||
| test_chrono_year_month_weekday_last.cpp | ||
| test_chrono_year_month_weekday.cpp | ||
| test_chrono_year_month.cpp | ||
| test_chrono_year.cpp | ||
| test_circular_buffer_external_buffer.cpp | ||
| test_circular_buffer.cpp | ||
| test_circular_iterator.cpp | ||
| test_closure_constexpr.cpp | ||
| test_closure.cpp | ||
| test_compare.cpp | ||
| test_concepts.cpp | ||
| test_const_map_constexpr.cpp | ||
| test_const_map_ext_constexpr.cpp | ||
| test_const_map_ext.cpp | ||
| test_const_map.cpp | ||
| test_const_multimap_constexpr.cpp | ||
| test_const_multimap_ext_constexpr.cpp | ||
| test_const_multimap_ext.cpp | ||
| test_const_multimap.cpp | ||
| test_const_multiset_constexpr.cpp | ||
| test_const_multiset_ext_constexpr.cpp | ||
| test_const_multiset_ext.cpp | ||
| test_const_multiset.cpp | ||
| test_const_set_constexpr.cpp | ||
| test_const_set_ext_constexpr.cpp | ||
| test_const_set_ext.cpp | ||
| test_const_set.cpp | ||
| test_constant.cpp | ||
| test_container.cpp | ||
| test_correlation.cpp | ||
| test_covariance.cpp | ||
| test_crc1.cpp | ||
| test_crc8_ccitt.cpp | ||
| test_crc8_cdma2000.cpp | ||
| test_crc8_darc.cpp | ||
| test_crc8_dvbs2.cpp | ||
| test_crc8_ebu.cpp | ||
| test_crc8_icode.cpp | ||
| test_crc8_itu.cpp | ||
| test_crc8_j1850_zero.cpp | ||
| test_crc8_j1850.cpp | ||
| test_crc8_maxim.cpp | ||
| test_crc8_nrsc5.cpp | ||
| test_crc8_opensafety.cpp | ||
| test_crc8_rohc.cpp | ||
| test_crc8_wcdma.cpp | ||
| test_crc16_a.cpp | ||
| test_crc16_arc.cpp | ||
| test_crc16_aug_ccitt.cpp | ||
| test_crc16_buypass.cpp | ||
| test_crc16_ccitt.cpp | ||
| test_crc16_cdma2000.cpp | ||
| test_crc16_dds110.cpp | ||
| test_crc16_dectr.cpp | ||
| test_crc16_dectx.cpp | ||
| test_crc16_dnp.cpp | ||
| test_crc16_en13757.cpp | ||
| test_crc16_genibus.cpp | ||
| test_crc16_kermit.cpp | ||
| test_crc16_m17.cpp | ||
| test_crc16_maxim.cpp | ||
| test_crc16_mcrf4xx.cpp | ||
| test_crc16_modbus.cpp | ||
| test_crc16_opensafety_a.cpp | ||
| test_crc16_opensafety_b.cpp | ||
| test_crc16_profibus.cpp | ||
| test_crc16_riello.cpp | ||
| test_crc16_t10dif.cpp | ||
| test_crc16_teledisk.cpp | ||
| test_crc16_tms37157.cpp | ||
| test_crc16_usb.cpp | ||
| test_crc16_x25.cpp | ||
| test_crc16_xmodem.cpp | ||
| test_crc16.cpp | ||
| test_crc32_bzip2.cpp | ||
| test_crc32_c.cpp | ||
| test_crc32_d.cpp | ||
| test_crc32_jamcrc.cpp | ||
| test_crc32_mpeg2.cpp | ||
| test_crc32_posix.cpp | ||
| test_crc32_q.cpp | ||
| test_crc32_xfer.cpp | ||
| test_crc32.cpp | ||
| test_crc64_ecma.cpp | ||
| test_crc64_iso.cpp | ||
| test_cyclic_value.cpp | ||
| test_debounce.cpp | ||
| test_delegate_cpp03.cpp | ||
| test_delegate_observable.cpp | ||
| test_delegate_service_compile_time.cpp | ||
| test_delegate_service_cpp03.cpp | ||
| test_delegate_service.cpp | ||
| test_delegate.cpp | ||
| test_deque.cpp | ||
| test_endian.cpp | ||
| test_enum_type.cpp | ||
| test_error_handler.cpp | ||
| test_etl_assert.cpp | ||
| test_etl_traits.cpp | ||
| test_exception.cpp | ||
| test_expected.cpp | ||
| test_fixed_iterator.cpp | ||
| test_fixed_sized_memory_block_allocator.cpp | ||
| test_flags.cpp | ||
| test_flat_map.cpp | ||
| test_flat_multimap.cpp | ||
| test_flat_multiset.cpp | ||
| test_flat_set.cpp | ||
| test_fnv_1.cpp | ||
| test_format_spec.cpp | ||
| test_format.cpp | ||
| test_forward_list_shared_pool.cpp | ||
| test_forward_list.cpp | ||
| test_fsm.cpp | ||
| test_function_traits.cpp | ||
| test_function.cpp | ||
| test_functional.cpp | ||
| test_gamma.cpp | ||
| test_hash.cpp | ||
| test_hfsm_recurse_to_inner_state_on_start.cpp | ||
| test_hfsm_transition_on_enter.cpp | ||
| test_hfsm.cpp | ||
| test_histogram.cpp | ||
| test_index_of_type.cpp | ||
| test_indirect_vector_external_buffer.cpp | ||
| test_indirect_vector.cpp | ||
| test_inplace_function.cpp | ||
| test_instance_count.cpp | ||
| test_integral_limits.cpp | ||
| test_intrusive_forward_list.cpp | ||
| test_intrusive_links.cpp | ||
| test_intrusive_list.cpp | ||
| test_intrusive_queue.cpp | ||
| test_intrusive_stack.cpp | ||
| test_invert.cpp | ||
| test_invoke.cpp | ||
| test_io_port.cpp | ||
| test_is_invocable.cpp | ||
| test_iterator.cpp | ||
| test_jenkins.cpp | ||
| test_largest.cpp | ||
| test_limiter.cpp | ||
| test_limits.cpp | ||
| test_list_shared_pool.cpp | ||
| test_list.cpp | ||
| test_macros.cpp | ||
| test_make_string.cpp | ||
| test_map.cpp | ||
| test_math_functions.cpp | ||
| test_math.cpp | ||
| test_mean.cpp | ||
| test_mem_cast_ptr.cpp | ||
| test_mem_cast.cpp | ||
| test_memory.cpp | ||
| test_message_broker.cpp | ||
| test_message_bus.cpp | ||
| test_message_packet.cpp | ||
| test_message_router_registry.cpp | ||
| test_message_router.cpp | ||
| test_message_timer_atomic.cpp | ||
| test_message_timer_interrupt.cpp | ||
| test_message_timer_locked.cpp | ||
| test_message_timer.cpp | ||
| test_message.cpp | ||
| test_multi_array.cpp | ||
| test_multi_range.cpp | ||
| test_multi_span.cpp | ||
| test_multi_vector.cpp | ||
| test_multimap.cpp | ||
| test_multiset.cpp | ||
| test_murmur3.cpp | ||
| test_not_null_pointer_constexpr.cpp | ||
| test_not_null_pointer.cpp | ||
| test_not_null_unique_pointer.cpp | ||
| test_nth_type.cpp | ||
| test_numeric.cpp | ||
| test_observer.cpp | ||
| test_optional.cpp | ||
| test_overload.cpp | ||
| test_packet.cpp | ||
| test_parameter_pack.cpp | ||
| test_parameter_type.cpp | ||
| test_parity_checksum.cpp | ||
| test_pearson.cpp | ||
| test_poly_span_dynamic_extent.cpp | ||
| test_poly_span_fixed_extent.cpp | ||
| test_pool_external_buffer.cpp | ||
| test_pool.cpp | ||
| test_print.cpp | ||
| test_priority_queue.cpp | ||
| test_pseudo_moving_average.cpp | ||
| test_quantize.cpp | ||
| test_queue_lockable_small.cpp | ||
| test_queue_lockable.cpp | ||
| test_queue_memory_model_small.cpp | ||
| test_queue_mpmc_mutex_small.cpp | ||
| test_queue_mpmc_mutex.cpp | ||
| test_queue_spsc_atomic_small.cpp | ||
| test_queue_spsc_atomic.cpp | ||
| test_queue_spsc_isr_small.cpp | ||
| test_queue_spsc_isr.cpp | ||
| test_queue_spsc_locked_small.cpp | ||
| test_queue_spsc_locked.cpp | ||
| test_queue.cpp | ||
| test_random.cpp | ||
| test_ratio.cpp | ||
| test_reference_flat_map.cpp | ||
| test_reference_flat_multimap.cpp | ||
| test_reference_flat_multiset.cpp | ||
| test_reference_flat_set.cpp | ||
| test_rescale.cpp | ||
| test_result.cpp | ||
| test_rms.cpp | ||
| test_rounded_integral_division.cpp | ||
| test_scaled_rounding.cpp | ||
| test_set.cpp | ||
| test_shared_message.cpp | ||
| test_signal.cpp | ||
| test_singleton_base.cpp | ||
| test_singleton.cpp | ||
| test_smallest.cpp | ||
| test_span_dynamic_extent.cpp | ||
| test_span_fixed_extent.cpp | ||
| test_stack.cpp | ||
| test_standard_deviation.cpp | ||
| test_state_chart_compile_time_with_data_parameter.cpp | ||
| test_state_chart_compile_time.cpp | ||
| test_state_chart_with_data_parameter.cpp | ||
| test_state_chart_with_rvalue_data_parameter.cpp | ||
| test_state_chart.cpp | ||
| test_string_char_external_buffer.cpp | ||
| test_string_char.cpp | ||
| test_string_stream_u8.cpp | ||
| test_string_stream_u16.cpp | ||
| test_string_stream_u32.cpp | ||
| test_string_stream_wchar_t.cpp | ||
| test_string_stream.cpp | ||
| test_string_u8_external_buffer.cpp | ||
| test_string_u8.cpp | ||
| test_string_u16_external_buffer.cpp | ||
| test_string_u16.cpp | ||
| test_string_u32_external_buffer.cpp | ||
| test_string_u32.cpp | ||
| test_string_utilities_std_u8.cpp | ||
| test_string_utilities_std_u16.cpp | ||
| test_string_utilities_std_u32.cpp | ||
| test_string_utilities_std_wchar_t.cpp | ||
| test_string_utilities_std.cpp | ||
| test_string_utilities_u8.cpp | ||
| test_string_utilities_u16.cpp | ||
| test_string_utilities_u32.cpp | ||
| test_string_utilities_wchar_t.cpp | ||
| test_string_utilities.cpp | ||
| test_string_view.cpp | ||
| test_string_wchar_t_external_buffer.cpp | ||
| test_string_wchar_t.cpp | ||
| test_successor.cpp | ||
| test_task_scheduler.cpp | ||
| test_threshold.cpp | ||
| test_to_arithmetic_u8.cpp | ||
| test_to_arithmetic_u16.cpp | ||
| test_to_arithmetic_u32.cpp | ||
| test_to_arithmetic_wchar_t.cpp | ||
| test_to_arithmetic.cpp | ||
| test_to_string.cpp | ||
| test_to_u8string.cpp | ||
| test_to_u16string.cpp | ||
| test_to_u32string.cpp | ||
| test_to_wstring.cpp | ||
| test_tuple.cpp | ||
| test_type_def.cpp | ||
| test_type_list.cpp | ||
| test_type_lookup.cpp | ||
| test_type_select.cpp | ||
| test_type_traits.cpp | ||
| test_unaligned_type_ext.cpp | ||
| test_unaligned_type.cpp | ||
| test_uncopyable.cpp | ||
| test_unordered_map.cpp | ||
| test_unordered_multimap.cpp | ||
| test_unordered_multiset.cpp | ||
| test_unordered_set.cpp | ||
| test_user_type.cpp | ||
| test_utility.cpp | ||
| test_variance.cpp | ||
| test_variant_legacy.cpp | ||
| test_variant_pool_external_buffer.cpp | ||
| test_variant_pool.cpp | ||
| test_variant_variadic.cpp | ||
| test_vector_external_buffer.cpp | ||
| test_vector_non_trivial.cpp | ||
| test_vector_pointer_external_buffer.cpp | ||
| test_vector_pointer.cpp | ||
| test_vector.cpp | ||
| test_visitor.cpp | ||
| test_xor_checksum.cpp | ||
| test_xor_rotate_checksum.cpp | ||
| unit_test_framework.h | ||
| words.txt | ||