├── .clang-format ├── .clang-tidy ├── .clangd ├── .cppcheck ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE │ ├── bugfix.md │ ├── chore.md │ └── feature.md └── workflows │ ├── deploy_pages.yml │ ├── freebsd.yml │ ├── macos.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE.md ├── actions.sh ├── auxiliary ├── CMakeLists.txt ├── approx_distributions │ ├── generate.cpp │ └── plot.py ├── seed_correlation │ ├── generate.cpp │ └── plot.py └── spectral_test │ ├── generate.cpp │ └── plot.py ├── bash ├── colors.sh ├── create_single_header.sh ├── functions.sh ├── run_static_analysis.sh └── variables.sh ├── benchmarks ├── CMakeLists.txt ├── common.hpp ├── data │ ├── apache_builds.json │ ├── canada.json │ ├── database.json │ ├── numbers.json │ ├── random.json │ ├── strings.json │ └── twitter.json ├── module_json │ └── parse_serialize.cpp ├── module_log │ ├── logging_overhead.cpp │ └── stringification.cpp ├── module_mvl │ └── experimental.cpp ├── module_parallel │ └── thread_pool_comparison.cpp ├── module_profiler │ └── profiling_overhead.cpp ├── module_random │ ├── normal_distributions.cpp │ ├── prngs.cpp │ ├── uniform_int_distributions.cpp │ └── uniform_real_distributions.cpp └── thirdparty │ ├── bshoshany │ └── BS_thread_pool.hpp │ ├── nanobench.h │ ├── nlohmann_json.hpp │ ├── picojson.h │ ├── progschj │ └── ThreadPool.h │ └── rapidjson │ ├── allocators.h │ ├── cursorstreamwrapper.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ ├── en.h │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ ├── biginteger.h │ ├── clzll.h │ ├── diyfp.h │ ├── dtoa.h │ ├── ieee754.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── regex.h │ ├── stack.h │ ├── strfunc.h │ ├── strtod.h │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ ├── inttypes.h │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ ├── uri.h │ └── writer.h ├── docs ├── .nav.yml ├── README.md ├── blog │ ├── cpp_performance_issues.md │ └── map_macro_reflection.md ├── dev_commit_style.md ├── dev_file_templates.md ├── dev_roadmap.md ├── dev_testing_toolchain.md ├── guide_building_docs.md ├── guide_building_project.md ├── guide_fetching_library.md ├── guide_license.md ├── guide_reproducing_figures.md ├── guide_reserved_names.md ├── guide_selecting_modules.md ├── guide_versioning.md ├── images │ ├── assertion_binary_assertion.png │ ├── assertion_default_message.png │ ├── assertion_logging_on_failure.png │ ├── assertion_quick_showcase.png │ ├── assertion_unary_assertion.png │ ├── badge_docs.svg │ ├── badge_header_only.svg │ ├── badge_language_cpp_17.svg │ ├── badge_license_mit.svg │ ├── badge_no_dependencies.svg │ ├── badge_semver.svg │ ├── badge_workflow_freebsd.svg │ ├── badge_workflow_macos.svg │ ├── badge_workflow_ubuntu.svg │ ├── badge_workflow_windows.svg │ ├── icon_site_logo.ico │ ├── log_basic_logging.png │ ├── log_colored_output.png │ ├── log_formatting_modifiers.png │ ├── log_global_logger.png │ ├── log_local_logger.png │ ├── log_logging_objects.png │ ├── log_multiple_sinks_output.png │ ├── log_showcase_println.png │ ├── mvl_diagram.svg │ ├── profiler_output_example.png │ ├── profiler_profiling_code_segment.png │ ├── profiler_profiling_detached_threads.png │ ├── profiler_profiling_parallel_section.png │ ├── profiler_profiling_recursion.png │ ├── random_approx_distributions.svg │ ├── random_seed_correlation_minstd_rand.svg │ ├── random_seed_correlation_mt19937.svg │ ├── random_spectral_test_above.svg │ ├── random_spectral_test_angle.svg │ ├── table_code_ascii.png │ ├── table_code_csv.png │ ├── table_code_latex.png │ ├── table_code_markdown.png │ ├── table_code_mathematica.png │ ├── table_output_ascii.png │ ├── table_output_csv.png │ ├── table_output_latex.png │ ├── table_output_markdown.png │ └── table_output_mathematica.png ├── mkdocs │ ├── callouts.css │ ├── mathjax.js │ ├── modification │ │ ├── header_title.js │ │ └── relative_links.js │ └── width.css ├── module_assertion.md ├── module_bit.md ├── module_enum_reflect.md ├── module_integral.md ├── module_json.md ├── module_log.md ├── module_math.md ├── module_mvl.md ├── module_parallel.md ├── module_predef.md ├── module_profiler.md ├── module_progressbar.md ├── module_random.md ├── module_shell.md ├── module_sleep.md ├── module_stre.md ├── module_strong_type.md ├── module_struct_reflect.md ├── module_table.md └── module_time.md ├── examples ├── CMakeLists.txt ├── module_assertion │ ├── binary_assertion.cpp │ ├── default_message.cpp │ ├── logging_on_failure.cpp │ └── unary_assertion.cpp ├── module_bit │ ├── additional_bitflag_examples.cpp │ ├── general_usage.cpp │ ├── using_enum_bitflags.cpp │ └── working_with_individual_bits.cpp ├── module_enum_reflect │ └── reflecting_an_enum.cpp ├── module_integral │ ├── heterogeneous_comparison.cpp │ ├── integer_division.cpp │ ├── integral_literals.cpp │ ├── narrow_cast.cpp │ ├── saturated_math.cpp │ └── sign_conversion.cpp ├── module_json │ ├── complex_structure_reflection.cpp │ ├── error_handling.cpp │ ├── formatting.cpp │ ├── getters.cpp │ ├── parse_serialize_json.cpp │ ├── setters_and_type_conversions.cpp │ └── structure_reflection.cpp ├── module_log │ ├── basic_logging.cpp │ ├── extending_formatter_for_custom_type_traits.cpp │ ├── extending_formatter_for_custom_types.cpp │ ├── formatting_modifiers.cpp │ ├── global_logger.cpp │ ├── local_logger.cpp │ ├── logging_objects.cpp │ └── sink_configuration.cpp ├── module_math │ ├── conversions.cpp │ ├── index_functions.cpp │ ├── summation_and_product.cpp │ └── template_math_functions.cpp ├── module_parallel │ ├── awaitable_parallel_loop_with_specific_grain_size.cpp │ ├── awaitable_tasks.cpp │ ├── detached_tasks.cpp │ ├── parallel_for_loop.cpp │ ├── recursive_tasks.cpp │ ├── reducing_over_a_binary_operation.cpp │ ├── thread_introspection.cpp │ └── using_a_local_thread_pool.cpp ├── module_predef │ ├── compilation_summary.cpp │ ├── conditional_compilation.cpp │ └── optimization_macros.cpp ├── module_profiler │ ├── custom_style_and_exporting_results_to_a_file.cpp │ ├── profiling_code_segment.cpp │ ├── profiling_detached_threads_and_uploading_results.cpp │ ├── profiling_parallel_section.cpp │ └── profiling_recursion.cpp ├── module_progressbar │ ├── progress_bar.cpp │ └── progress_bar_with_custom_style.cpp ├── module_random │ ├── constexpr_random.cpp │ ├── getting_random_values.cpp │ └── using_custom_prngs_with_random.cpp ├── module_shell │ ├── running_shell_commands.cpp │ └── working_with_temporary_files.cpp ├── module_sleep │ └── comparing_sleep_precision.cpp ├── module_stre │ ├── case_conversions.cpp │ ├── character_classification.cpp │ ├── difference_measurement.cpp │ ├── escaping.cpp │ ├── padding.cpp │ ├── repeating.cpp │ ├── substring_checks.cpp │ ├── substring_replacement.cpp │ ├── tokenization.cpp │ └── trimming.cpp ├── module_strong_type │ ├── strongly_typed_integer_unit.cpp │ ├── wrapping_cstdio_file_handle.cpp │ └── wrapping_opengl_shader_handle.cpp ├── module_struct_reflect │ ├── basic_reflection.cpp │ ├── debug_printing_with_utl_log.cpp │ ├── field_and_entry_views.cpp │ ├── iterating_over_a_generic_tuple.cpp │ └── using_reflection_to_define_binary_operations.cpp ├── module_table │ ├── ascii_table.cpp │ ├── building_tables_cell_by_cell.cpp │ ├── csv_table.cpp │ ├── floating_point_formatting.cpp │ ├── latex_table.cpp │ ├── markdown_table.cpp │ └── mathematica_table.cpp └── module_time │ ├── accumulate_time.cpp │ ├── get_elapsed_time.cpp │ ├── get_local_date_and_time.cpp │ └── set_timers.cpp ├── include └── UTL │ ├── assertion.hpp │ ├── bit.hpp │ ├── enum_reflect.hpp │ ├── integral.hpp │ ├── json.hpp │ ├── log.hpp │ ├── math.hpp │ ├── mvl.hpp │ ├── parallel.hpp │ ├── predef.hpp │ ├── profiler.hpp │ ├── progressbar.hpp │ ├── random.hpp │ ├── shell.hpp │ ├── sleep.hpp │ ├── stre.hpp │ ├── strong_type.hpp │ ├── struct_reflect.hpp │ ├── table.hpp │ └── time.hpp ├── mkdocs.yml ├── single_include └── UTL.hpp └── tests ├── CMakeLists.txt ├── common.hpp ├── data └── json_test_suite │ ├── should_accept │ ├── y_array_arraysWithSpaces.json │ ├── y_array_empty-string.json │ ├── y_array_empty.json │ ├── y_array_ending_with_newline.json │ ├── y_array_false.json │ ├── y_array_heterogeneous.json │ ├── y_array_null.json │ ├── y_array_with_1_and_newline.json │ ├── y_array_with_leading_space.json │ ├── y_array_with_several_null.json │ ├── y_array_with_trailing_space.json │ ├── y_number.json │ ├── y_number_0e+1.json │ ├── y_number_0e1.json │ ├── y_number_after_space.json │ ├── y_number_double_close_to_zero.json │ ├── y_number_int_with_exp.json │ ├── y_number_minus_zero.json │ ├── y_number_negative_int.json │ ├── y_number_negative_one.json │ ├── y_number_negative_zero.json │ ├── y_number_real_capital_e.json │ ├── y_number_real_capital_e_neg_exp.json │ ├── y_number_real_capital_e_pos_exp.json │ ├── y_number_real_exponent.json │ ├── y_number_real_fraction_exponent.json │ ├── y_number_real_neg_exp.json │ ├── y_number_real_pos_exponent.json │ ├── y_number_simple_int.json │ ├── y_number_simple_real.json │ ├── y_object.json │ ├── y_object_basic.json │ ├── y_object_duplicated_key.json │ ├── y_object_duplicated_key_and_value.json │ ├── y_object_empty.json │ ├── y_object_empty_key.json │ ├── y_object_escaped_null_in_key.json │ ├── y_object_extreme_numbers.json │ ├── y_object_long_strings.json │ ├── y_object_simple.json │ ├── y_object_string_unicode.json │ ├── y_object_with_newlines.json │ ├── y_string_1_2_3_bytes_UTF-8_sequences.json │ ├── y_string_accepted_surrogate_pair.json │ ├── y_string_accepted_surrogate_pairs.json │ ├── y_string_allowed_escapes.json │ ├── y_string_backslash_and_u_escaped_zero.json │ ├── y_string_backslash_doublequotes.json │ ├── y_string_comments.json │ ├── y_string_double_escape_a.json │ ├── y_string_double_escape_n.json │ ├── y_string_escaped_control_character.json │ ├── y_string_escaped_noncharacter.json │ ├── y_string_in_array.json │ ├── y_string_in_array_with_leading_space.json │ ├── y_string_last_surrogates_1_and_2.json │ ├── y_string_nbsp_uescaped.json │ ├── y_string_nonCharacterInUTF-8_U+10FFFF.json │ ├── y_string_nonCharacterInUTF-8_U+FFFF.json │ ├── y_string_null_escape.json │ ├── y_string_one-byte-utf-8.json │ ├── y_string_pi.json │ ├── y_string_reservedCharacterInUTF-8_U+1BFFF.json │ ├── y_string_simple_ascii.json │ ├── y_string_space.json │ ├── y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json │ ├── y_string_three-byte-utf-8.json │ ├── y_string_two-byte-utf-8.json │ ├── y_string_u+2028_line_sep.json │ ├── y_string_u+2029_par_sep.json │ ├── y_string_uEscape.json │ ├── y_string_uescaped_newline.json │ ├── y_string_unescaped_char_delete.json │ ├── y_string_unicode.json │ ├── y_string_unicodeEscapedBackslash.json │ ├── y_string_unicode_2.json │ ├── y_string_unicode_U+10FFFE_nonchar.json │ ├── y_string_unicode_U+1FFFE_nonchar.json │ ├── y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json │ ├── y_string_unicode_U+2064_invisible_plus.json │ ├── y_string_unicode_U+FDD0_nonchar.json │ ├── y_string_unicode_U+FFFE_nonchar.json │ ├── y_string_unicode_escaped_double_quote.json │ ├── y_string_utf8.json │ ├── y_string_with_del_character.json │ ├── y_structure_lonely_false.json │ ├── y_structure_lonely_int.json │ ├── y_structure_lonely_negative_real.json │ ├── y_structure_lonely_null.json │ ├── y_structure_lonely_string.json │ ├── y_structure_lonely_true.json │ ├── y_structure_string_empty.json │ ├── y_structure_trailing_newline.json │ ├── y_structure_true_in_array.json │ └── y_structure_whitespace_array.json │ └── should_reject │ ├── n_array_1_true_without_comma.json │ ├── n_array_a_invalid_utf8.json │ ├── n_array_colon_instead_of_comma.json │ ├── n_array_comma_after_close.json │ ├── n_array_comma_and_number.json │ ├── n_array_double_comma.json │ ├── n_array_double_extra_comma.json │ ├── n_array_extra_close.json │ ├── n_array_extra_comma.json │ ├── n_array_incomplete.json │ ├── n_array_incomplete_invalid_value.json │ ├── n_array_inner_array_no_comma.json │ ├── n_array_invalid_utf8.json │ ├── n_array_items_separated_by_semicolon.json │ ├── n_array_just_comma.json │ ├── n_array_just_minus.json │ ├── n_array_missing_value.json │ ├── n_array_newlines_unclosed.json │ ├── n_array_number_and_comma.json │ ├── n_array_number_and_several_commas.json │ ├── n_array_spaces_vertical_tab_formfeed.json │ ├── n_array_star_inside.json │ ├── n_array_unclosed.json │ ├── n_array_unclosed_trailing_comma.json │ ├── n_array_unclosed_with_new_lines.json │ ├── n_array_unclosed_with_object_inside.json │ ├── n_incomplete_false.json │ ├── n_incomplete_null.json │ ├── n_incomplete_true.json │ ├── n_multidigit_number_then_00.json │ ├── n_number_++.json │ ├── n_number_+1.json │ ├── n_number_+Inf.json │ ├── n_number_-01.json │ ├── n_number_-1.0..json │ ├── n_number_-2..json │ ├── n_number_-NaN.json │ ├── n_number_.-1.json │ ├── n_number_.2e-3.json │ ├── n_number_0.1.2.json │ ├── n_number_0.3e+.json │ ├── n_number_0.3e.json │ ├── n_number_0.e1.json │ ├── n_number_0_capital_E+.json │ ├── n_number_0_capital_E.json │ ├── n_number_0e+.json │ ├── n_number_0e.json │ ├── n_number_1.0e+.json │ ├── n_number_1.0e-.json │ ├── n_number_1.0e.json │ ├── n_number_1_000.json │ ├── n_number_1eE2.json │ ├── n_number_2.e+3.json │ ├── n_number_2.e-3.json │ ├── n_number_2.e3.json │ ├── n_number_9.e+.json │ ├── n_number_Inf.json │ ├── n_number_NaN.json │ ├── n_number_U+FF11_fullwidth_digit_one.json │ ├── n_number_expression.json │ ├── n_number_hex_1_digit.json │ ├── n_number_hex_2_digits.json │ ├── n_number_infinity.json │ ├── n_number_invalid+-.json │ ├── n_number_invalid-negative-real.json │ ├── n_number_invalid-utf-8-in-bigger-int.json │ ├── n_number_invalid-utf-8-in-exponent.json │ ├── n_number_invalid-utf-8-in-int.json │ ├── n_number_minus_infinity.json │ ├── n_number_minus_sign_with_trailing_garbage.json │ ├── n_number_minus_space_1.json │ ├── n_number_neg_int_starting_with_zero.json │ ├── n_number_neg_real_without_int_part.json │ ├── n_number_neg_with_garbage_at_end.json │ ├── n_number_real_garbage_after_e.json │ ├── n_number_real_with_invalid_utf8_after_e.json │ ├── n_number_real_without_fractional_part.json │ ├── n_number_starting_with_dot.json │ ├── n_number_with_alpha.json │ ├── n_number_with_alpha_char.json │ ├── n_number_with_leading_zero.json │ ├── n_object_bad_value.json │ ├── n_object_bracket_key.json │ ├── n_object_comma_instead_of_colon.json │ ├── n_object_double_colon.json │ ├── n_object_emoji.json │ ├── n_object_garbage_at_end.json │ ├── n_object_key_with_single_quotes.json │ ├── n_object_lone_continuation_byte_in_key_and_trailing_comma.json │ ├── n_object_missing_colon.json │ ├── n_object_missing_key.json │ ├── n_object_missing_semicolon.json │ ├── n_object_missing_value.json │ ├── n_object_no-colon.json │ ├── n_object_non_string_key.json │ ├── n_object_non_string_key_but_huge_number_instead.json │ ├── n_object_repeated_null_null.json │ ├── n_object_several_trailing_commas.json │ ├── n_object_single_quote.json │ ├── n_object_trailing_comma.json │ ├── n_object_trailing_comment.json │ ├── n_object_trailing_comment_open.json │ ├── n_object_trailing_comment_slash_open.json │ ├── n_object_trailing_comment_slash_open_incomplete.json │ ├── n_object_two_commas_in_a_row.json │ ├── n_object_unquoted_key.json │ ├── n_object_unterminated-value.json │ ├── n_object_with_single_string.json │ ├── n_object_with_trailing_garbage.json │ ├── n_single_space.json │ ├── n_string_1_surrogate_then_escape.json │ ├── n_string_1_surrogate_then_escape_u.json │ ├── n_string_1_surrogate_then_escape_u1.json │ ├── n_string_1_surrogate_then_escape_u1x.json │ ├── n_string_accentuated_char_no_quotes.json │ ├── n_string_backslash_00.json │ ├── n_string_escape_x.json │ ├── n_string_escaped_backslash_bad.json │ ├── n_string_escaped_ctrl_char_tab.json │ ├── n_string_escaped_emoji.json │ ├── n_string_incomplete_escape.json │ ├── n_string_incomplete_escaped_character.json │ ├── n_string_incomplete_surrogate.json │ ├── n_string_incomplete_surrogate_escape_invalid.json │ ├── n_string_invalid-utf-8-in-escape.json │ ├── n_string_invalid_backslash_esc.json │ ├── n_string_invalid_unicode_escape.json │ ├── n_string_invalid_utf8_after_escape.json │ ├── n_string_leading_uescaped_thinspace.json │ ├── n_string_no_quotes_with_bad_escape.json │ ├── n_string_single_doublequote.json │ ├── n_string_single_quote.json │ ├── n_string_single_string_no_double_quotes.json │ ├── n_string_start_escape_unclosed.json │ ├── n_string_unescaped_ctrl_char.json │ ├── n_string_unescaped_newline.json │ ├── n_string_unescaped_tab.json │ ├── n_string_unicode_CapitalU.json │ ├── n_string_with_trailing_garbage.json │ ├── n_structure_100000_opening_arrays.json │ ├── n_structure_U+2060_word_joined.json │ ├── n_structure_UTF8_BOM_no_data.json │ ├── n_structure_angle_bracket_..json │ ├── n_structure_angle_bracket_null.json │ ├── n_structure_array_trailing_garbage.json │ ├── n_structure_array_with_extra_array_close.json │ ├── n_structure_array_with_unclosed_string.json │ ├── n_structure_ascii-unicode-identifier.json │ ├── n_structure_capitalized_True.json │ ├── n_structure_close_unopened_array.json │ ├── n_structure_comma_instead_of_closing_brace.json │ ├── n_structure_double_array.json │ ├── n_structure_end_array.json │ ├── n_structure_incomplete_UTF8_BOM.json │ ├── n_structure_lone-invalid-utf-8.json │ ├── n_structure_lone-open-bracket.json │ ├── n_structure_no_data.json │ ├── n_structure_null-byte-outside-string.json │ ├── n_structure_number_with_trailing_garbage.json │ ├── n_structure_object_followed_by_closing_object.json │ ├── n_structure_object_unclosed_no_value.json │ ├── n_structure_object_with_comment.json │ ├── n_structure_object_with_trailing_garbage.json │ ├── n_structure_open_array_apostrophe.json │ ├── n_structure_open_array_comma.json │ ├── n_structure_open_array_object.json │ ├── n_structure_open_array_open_object.json │ ├── n_structure_open_array_open_string.json │ ├── n_structure_open_array_string.json │ ├── n_structure_open_object.json │ ├── n_structure_open_object_close_array.json │ ├── n_structure_open_object_comma.json │ ├── n_structure_open_object_open_array.json │ ├── n_structure_open_object_open_string.json │ ├── n_structure_open_object_string_with_apostrophes.json │ ├── n_structure_open_open.json │ ├── n_structure_single_eacute.json │ ├── n_structure_single_star.json │ ├── n_structure_trailing_#.json │ ├── n_structure_uescaped_LF_before_string.json │ ├── n_structure_unclosed_array.json │ ├── n_structure_unclosed_array_partial_null.json │ ├── n_structure_unclosed_array_unfinished_false.json │ ├── n_structure_unclosed_array_unfinished_true.json │ ├── n_structure_unclosed_object.json │ ├── n_structure_unicode-identifier.json │ ├── n_structure_whitespace_U+2060_word_joiner.json │ └── n_structure_whitespace_formfeed.json ├── general_odr ├── main.cpp ├── second.cpp └── second.hpp ├── module_assertion └── assertions.cpp ├── module_bit ├── enum_bitflags.cpp ├── group_bit_operations.cpp ├── individual_bit_operations.cpp └── utils.cpp ├── module_enum_reflect └── reflection.cpp ├── module_integral ├── rounding_integer_division.cpp └── saturated_math.cpp ├── module_json ├── conversions.cpp ├── object_node_api.cpp ├── parser_accepts_valid.cpp ├── parser_rejects_invalid.cpp └── reflection.cpp ├── module_log ├── custom_sinks.cpp ├── stringifier.cpp └── styling.cpp ├── module_math └── functions.cpp ├── module_mvl └── experimental.cpp ├── module_parallel ├── fuzzing.cpp ├── parallel_for_container.cpp ├── parallel_for_index_range.cpp ├── parallel_for_range.cpp ├── parallel_reduce_container.cpp ├── parallel_reduce_range.cpp └── thread_pool_basics.cpp ├── module_random ├── mean_min_max_sanity.cpp ├── uniform_int_coverage.cpp ├── uniform_int_range.cpp └── uniform_real_range.cpp ├── module_shell └── shell_commands.cpp ├── module_stre ├── case_conversions.cpp ├── character_classification.cpp ├── difference_measurement.cpp ├── escaping.cpp ├── padding.cpp ├── repeating.cpp ├── substring_checks.cpp ├── substring_replacement.cpp ├── tokenization.cpp └── trimming.cpp ├── module_strong_type ├── arithmetic.cpp └── unique.cpp ├── module_struct_reflect ├── perfect_forwarding.cpp └── reflection.cpp ├── module_table └── formats.cpp ├── module_time └── unit_split.cpp └── thirdparty └── doctest.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- 1 | CompileFlags: 2 | Add: [-std=c++17, -ferror-limit=0] 3 | -------------------------------------------------------------------------------- /.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.cppcheck -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bugfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/PULL_REQUEST_TEMPLATE/bugfix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/PULL_REQUEST_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/workflows/deploy_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/workflows/deploy_pages.yml -------------------------------------------------------------------------------- /.github/workflows/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/workflows/freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/actions.sh -------------------------------------------------------------------------------- /auxiliary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/auxiliary/CMakeLists.txt -------------------------------------------------------------------------------- /auxiliary/approx_distributions/generate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/auxiliary/approx_distributions/generate.cpp -------------------------------------------------------------------------------- /auxiliary/approx_distributions/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/auxiliary/approx_distributions/plot.py -------------------------------------------------------------------------------- /auxiliary/seed_correlation/generate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/auxiliary/seed_correlation/generate.cpp -------------------------------------------------------------------------------- /auxiliary/seed_correlation/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/auxiliary/seed_correlation/plot.py -------------------------------------------------------------------------------- /auxiliary/spectral_test/generate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/auxiliary/spectral_test/generate.cpp -------------------------------------------------------------------------------- /auxiliary/spectral_test/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/auxiliary/spectral_test/plot.py -------------------------------------------------------------------------------- /bash/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/bash/colors.sh -------------------------------------------------------------------------------- /bash/create_single_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/bash/create_single_header.sh -------------------------------------------------------------------------------- /bash/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/bash/functions.sh -------------------------------------------------------------------------------- /bash/run_static_analysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/bash/run_static_analysis.sh -------------------------------------------------------------------------------- /bash/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/bash/variables.sh -------------------------------------------------------------------------------- /benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/common.hpp -------------------------------------------------------------------------------- /benchmarks/data/apache_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/data/apache_builds.json -------------------------------------------------------------------------------- /benchmarks/data/canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/data/canada.json -------------------------------------------------------------------------------- /benchmarks/data/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/data/database.json -------------------------------------------------------------------------------- /benchmarks/data/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/data/numbers.json -------------------------------------------------------------------------------- /benchmarks/data/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/data/random.json -------------------------------------------------------------------------------- /benchmarks/data/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/data/strings.json -------------------------------------------------------------------------------- /benchmarks/data/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/data/twitter.json -------------------------------------------------------------------------------- /benchmarks/module_json/parse_serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_json/parse_serialize.cpp -------------------------------------------------------------------------------- /benchmarks/module_log/logging_overhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_log/logging_overhead.cpp -------------------------------------------------------------------------------- /benchmarks/module_log/stringification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_log/stringification.cpp -------------------------------------------------------------------------------- /benchmarks/module_mvl/experimental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_mvl/experimental.cpp -------------------------------------------------------------------------------- /benchmarks/module_parallel/thread_pool_comparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_parallel/thread_pool_comparison.cpp -------------------------------------------------------------------------------- /benchmarks/module_profiler/profiling_overhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_profiler/profiling_overhead.cpp -------------------------------------------------------------------------------- /benchmarks/module_random/normal_distributions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_random/normal_distributions.cpp -------------------------------------------------------------------------------- /benchmarks/module_random/prngs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_random/prngs.cpp -------------------------------------------------------------------------------- /benchmarks/module_random/uniform_int_distributions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_random/uniform_int_distributions.cpp -------------------------------------------------------------------------------- /benchmarks/module_random/uniform_real_distributions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/module_random/uniform_real_distributions.cpp -------------------------------------------------------------------------------- /benchmarks/thirdparty/bshoshany/BS_thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/bshoshany/BS_thread_pool.hpp -------------------------------------------------------------------------------- /benchmarks/thirdparty/nanobench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/nanobench.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/nlohmann_json.hpp -------------------------------------------------------------------------------- /benchmarks/thirdparty/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/picojson.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/progschj/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/progschj/ThreadPool.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/allocators.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/document.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/encodings.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/error/en.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/error/error.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/fwd.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/clzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/clzll.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/memorystream.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/pointer.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/reader.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/schema.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/stream.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/uri.h -------------------------------------------------------------------------------- /benchmarks/thirdparty/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/benchmarks/thirdparty/rapidjson/writer.h -------------------------------------------------------------------------------- /docs/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/.nav.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/blog/cpp_performance_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/blog/cpp_performance_issues.md -------------------------------------------------------------------------------- /docs/blog/map_macro_reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/blog/map_macro_reflection.md -------------------------------------------------------------------------------- /docs/dev_commit_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/dev_commit_style.md -------------------------------------------------------------------------------- /docs/dev_file_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/dev_file_templates.md -------------------------------------------------------------------------------- /docs/dev_roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/dev_roadmap.md -------------------------------------------------------------------------------- /docs/dev_testing_toolchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/dev_testing_toolchain.md -------------------------------------------------------------------------------- /docs/guide_building_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_building_docs.md -------------------------------------------------------------------------------- /docs/guide_building_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_building_project.md -------------------------------------------------------------------------------- /docs/guide_fetching_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_fetching_library.md -------------------------------------------------------------------------------- /docs/guide_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_license.md -------------------------------------------------------------------------------- /docs/guide_reproducing_figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_reproducing_figures.md -------------------------------------------------------------------------------- /docs/guide_reserved_names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_reserved_names.md -------------------------------------------------------------------------------- /docs/guide_selecting_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_selecting_modules.md -------------------------------------------------------------------------------- /docs/guide_versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/guide_versioning.md -------------------------------------------------------------------------------- /docs/images/assertion_binary_assertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/assertion_binary_assertion.png -------------------------------------------------------------------------------- /docs/images/assertion_default_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/assertion_default_message.png -------------------------------------------------------------------------------- /docs/images/assertion_logging_on_failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/assertion_logging_on_failure.png -------------------------------------------------------------------------------- /docs/images/assertion_quick_showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/assertion_quick_showcase.png -------------------------------------------------------------------------------- /docs/images/assertion_unary_assertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/assertion_unary_assertion.png -------------------------------------------------------------------------------- /docs/images/badge_docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_docs.svg -------------------------------------------------------------------------------- /docs/images/badge_header_only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_header_only.svg -------------------------------------------------------------------------------- /docs/images/badge_language_cpp_17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_language_cpp_17.svg -------------------------------------------------------------------------------- /docs/images/badge_license_mit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_license_mit.svg -------------------------------------------------------------------------------- /docs/images/badge_no_dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_no_dependencies.svg -------------------------------------------------------------------------------- /docs/images/badge_semver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_semver.svg -------------------------------------------------------------------------------- /docs/images/badge_workflow_freebsd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_workflow_freebsd.svg -------------------------------------------------------------------------------- /docs/images/badge_workflow_macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_workflow_macos.svg -------------------------------------------------------------------------------- /docs/images/badge_workflow_ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_workflow_ubuntu.svg -------------------------------------------------------------------------------- /docs/images/badge_workflow_windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/badge_workflow_windows.svg -------------------------------------------------------------------------------- /docs/images/icon_site_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/icon_site_logo.ico -------------------------------------------------------------------------------- /docs/images/log_basic_logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_basic_logging.png -------------------------------------------------------------------------------- /docs/images/log_colored_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_colored_output.png -------------------------------------------------------------------------------- /docs/images/log_formatting_modifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_formatting_modifiers.png -------------------------------------------------------------------------------- /docs/images/log_global_logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_global_logger.png -------------------------------------------------------------------------------- /docs/images/log_local_logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_local_logger.png -------------------------------------------------------------------------------- /docs/images/log_logging_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_logging_objects.png -------------------------------------------------------------------------------- /docs/images/log_multiple_sinks_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_multiple_sinks_output.png -------------------------------------------------------------------------------- /docs/images/log_showcase_println.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/log_showcase_println.png -------------------------------------------------------------------------------- /docs/images/mvl_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/mvl_diagram.svg -------------------------------------------------------------------------------- /docs/images/profiler_output_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/profiler_output_example.png -------------------------------------------------------------------------------- /docs/images/profiler_profiling_code_segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/profiler_profiling_code_segment.png -------------------------------------------------------------------------------- /docs/images/profiler_profiling_detached_threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/profiler_profiling_detached_threads.png -------------------------------------------------------------------------------- /docs/images/profiler_profiling_parallel_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/profiler_profiling_parallel_section.png -------------------------------------------------------------------------------- /docs/images/profiler_profiling_recursion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/profiler_profiling_recursion.png -------------------------------------------------------------------------------- /docs/images/random_approx_distributions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/random_approx_distributions.svg -------------------------------------------------------------------------------- /docs/images/random_seed_correlation_minstd_rand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/random_seed_correlation_minstd_rand.svg -------------------------------------------------------------------------------- /docs/images/random_seed_correlation_mt19937.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/random_seed_correlation_mt19937.svg -------------------------------------------------------------------------------- /docs/images/random_spectral_test_above.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/random_spectral_test_above.svg -------------------------------------------------------------------------------- /docs/images/random_spectral_test_angle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/random_spectral_test_angle.svg -------------------------------------------------------------------------------- /docs/images/table_code_ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_code_ascii.png -------------------------------------------------------------------------------- /docs/images/table_code_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_code_csv.png -------------------------------------------------------------------------------- /docs/images/table_code_latex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_code_latex.png -------------------------------------------------------------------------------- /docs/images/table_code_markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_code_markdown.png -------------------------------------------------------------------------------- /docs/images/table_code_mathematica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_code_mathematica.png -------------------------------------------------------------------------------- /docs/images/table_output_ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_output_ascii.png -------------------------------------------------------------------------------- /docs/images/table_output_csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_output_csv.png -------------------------------------------------------------------------------- /docs/images/table_output_latex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_output_latex.png -------------------------------------------------------------------------------- /docs/images/table_output_markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_output_markdown.png -------------------------------------------------------------------------------- /docs/images/table_output_mathematica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/images/table_output_mathematica.png -------------------------------------------------------------------------------- /docs/mkdocs/callouts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/mkdocs/callouts.css -------------------------------------------------------------------------------- /docs/mkdocs/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/mkdocs/mathjax.js -------------------------------------------------------------------------------- /docs/mkdocs/modification/header_title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/mkdocs/modification/header_title.js -------------------------------------------------------------------------------- /docs/mkdocs/modification/relative_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/mkdocs/modification/relative_links.js -------------------------------------------------------------------------------- /docs/mkdocs/width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/mkdocs/width.css -------------------------------------------------------------------------------- /docs/module_assertion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_assertion.md -------------------------------------------------------------------------------- /docs/module_bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_bit.md -------------------------------------------------------------------------------- /docs/module_enum_reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_enum_reflect.md -------------------------------------------------------------------------------- /docs/module_integral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_integral.md -------------------------------------------------------------------------------- /docs/module_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_json.md -------------------------------------------------------------------------------- /docs/module_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_log.md -------------------------------------------------------------------------------- /docs/module_math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_math.md -------------------------------------------------------------------------------- /docs/module_mvl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_mvl.md -------------------------------------------------------------------------------- /docs/module_parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_parallel.md -------------------------------------------------------------------------------- /docs/module_predef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_predef.md -------------------------------------------------------------------------------- /docs/module_profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_profiler.md -------------------------------------------------------------------------------- /docs/module_progressbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_progressbar.md -------------------------------------------------------------------------------- /docs/module_random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_random.md -------------------------------------------------------------------------------- /docs/module_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_shell.md -------------------------------------------------------------------------------- /docs/module_sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_sleep.md -------------------------------------------------------------------------------- /docs/module_stre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_stre.md -------------------------------------------------------------------------------- /docs/module_strong_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_strong_type.md -------------------------------------------------------------------------------- /docs/module_struct_reflect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_struct_reflect.md -------------------------------------------------------------------------------- /docs/module_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_table.md -------------------------------------------------------------------------------- /docs/module_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/docs/module_time.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/module_assertion/binary_assertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_assertion/binary_assertion.cpp -------------------------------------------------------------------------------- /examples/module_assertion/default_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_assertion/default_message.cpp -------------------------------------------------------------------------------- /examples/module_assertion/logging_on_failure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_assertion/logging_on_failure.cpp -------------------------------------------------------------------------------- /examples/module_assertion/unary_assertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_assertion/unary_assertion.cpp -------------------------------------------------------------------------------- /examples/module_bit/additional_bitflag_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_bit/additional_bitflag_examples.cpp -------------------------------------------------------------------------------- /examples/module_bit/general_usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_bit/general_usage.cpp -------------------------------------------------------------------------------- /examples/module_bit/using_enum_bitflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_bit/using_enum_bitflags.cpp -------------------------------------------------------------------------------- /examples/module_bit/working_with_individual_bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_bit/working_with_individual_bits.cpp -------------------------------------------------------------------------------- /examples/module_enum_reflect/reflecting_an_enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_enum_reflect/reflecting_an_enum.cpp -------------------------------------------------------------------------------- /examples/module_integral/heterogeneous_comparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_integral/heterogeneous_comparison.cpp -------------------------------------------------------------------------------- /examples/module_integral/integer_division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_integral/integer_division.cpp -------------------------------------------------------------------------------- /examples/module_integral/integral_literals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_integral/integral_literals.cpp -------------------------------------------------------------------------------- /examples/module_integral/narrow_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_integral/narrow_cast.cpp -------------------------------------------------------------------------------- /examples/module_integral/saturated_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_integral/saturated_math.cpp -------------------------------------------------------------------------------- /examples/module_integral/sign_conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_integral/sign_conversion.cpp -------------------------------------------------------------------------------- /examples/module_json/complex_structure_reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_json/complex_structure_reflection.cpp -------------------------------------------------------------------------------- /examples/module_json/error_handling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_json/error_handling.cpp -------------------------------------------------------------------------------- /examples/module_json/formatting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_json/formatting.cpp -------------------------------------------------------------------------------- /examples/module_json/getters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_json/getters.cpp -------------------------------------------------------------------------------- /examples/module_json/parse_serialize_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_json/parse_serialize_json.cpp -------------------------------------------------------------------------------- /examples/module_json/setters_and_type_conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_json/setters_and_type_conversions.cpp -------------------------------------------------------------------------------- /examples/module_json/structure_reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_json/structure_reflection.cpp -------------------------------------------------------------------------------- /examples/module_log/basic_logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/basic_logging.cpp -------------------------------------------------------------------------------- /examples/module_log/extending_formatter_for_custom_type_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/extending_formatter_for_custom_type_traits.cpp -------------------------------------------------------------------------------- /examples/module_log/extending_formatter_for_custom_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/extending_formatter_for_custom_types.cpp -------------------------------------------------------------------------------- /examples/module_log/formatting_modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/formatting_modifiers.cpp -------------------------------------------------------------------------------- /examples/module_log/global_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/global_logger.cpp -------------------------------------------------------------------------------- /examples/module_log/local_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/local_logger.cpp -------------------------------------------------------------------------------- /examples/module_log/logging_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/logging_objects.cpp -------------------------------------------------------------------------------- /examples/module_log/sink_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_log/sink_configuration.cpp -------------------------------------------------------------------------------- /examples/module_math/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_math/conversions.cpp -------------------------------------------------------------------------------- /examples/module_math/index_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_math/index_functions.cpp -------------------------------------------------------------------------------- /examples/module_math/summation_and_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_math/summation_and_product.cpp -------------------------------------------------------------------------------- /examples/module_math/template_math_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_math/template_math_functions.cpp -------------------------------------------------------------------------------- /examples/module_parallel/awaitable_parallel_loop_with_specific_grain_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/awaitable_parallel_loop_with_specific_grain_size.cpp -------------------------------------------------------------------------------- /examples/module_parallel/awaitable_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/awaitable_tasks.cpp -------------------------------------------------------------------------------- /examples/module_parallel/detached_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/detached_tasks.cpp -------------------------------------------------------------------------------- /examples/module_parallel/parallel_for_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/parallel_for_loop.cpp -------------------------------------------------------------------------------- /examples/module_parallel/recursive_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/recursive_tasks.cpp -------------------------------------------------------------------------------- /examples/module_parallel/reducing_over_a_binary_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/reducing_over_a_binary_operation.cpp -------------------------------------------------------------------------------- /examples/module_parallel/thread_introspection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/thread_introspection.cpp -------------------------------------------------------------------------------- /examples/module_parallel/using_a_local_thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_parallel/using_a_local_thread_pool.cpp -------------------------------------------------------------------------------- /examples/module_predef/compilation_summary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_predef/compilation_summary.cpp -------------------------------------------------------------------------------- /examples/module_predef/conditional_compilation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_predef/conditional_compilation.cpp -------------------------------------------------------------------------------- /examples/module_predef/optimization_macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_predef/optimization_macros.cpp -------------------------------------------------------------------------------- /examples/module_profiler/custom_style_and_exporting_results_to_a_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_profiler/custom_style_and_exporting_results_to_a_file.cpp -------------------------------------------------------------------------------- /examples/module_profiler/profiling_code_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_profiler/profiling_code_segment.cpp -------------------------------------------------------------------------------- /examples/module_profiler/profiling_detached_threads_and_uploading_results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_profiler/profiling_detached_threads_and_uploading_results.cpp -------------------------------------------------------------------------------- /examples/module_profiler/profiling_parallel_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_profiler/profiling_parallel_section.cpp -------------------------------------------------------------------------------- /examples/module_profiler/profiling_recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_profiler/profiling_recursion.cpp -------------------------------------------------------------------------------- /examples/module_progressbar/progress_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_progressbar/progress_bar.cpp -------------------------------------------------------------------------------- /examples/module_progressbar/progress_bar_with_custom_style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_progressbar/progress_bar_with_custom_style.cpp -------------------------------------------------------------------------------- /examples/module_random/constexpr_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_random/constexpr_random.cpp -------------------------------------------------------------------------------- /examples/module_random/getting_random_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_random/getting_random_values.cpp -------------------------------------------------------------------------------- /examples/module_random/using_custom_prngs_with_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_random/using_custom_prngs_with_random.cpp -------------------------------------------------------------------------------- /examples/module_shell/running_shell_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_shell/running_shell_commands.cpp -------------------------------------------------------------------------------- /examples/module_shell/working_with_temporary_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_shell/working_with_temporary_files.cpp -------------------------------------------------------------------------------- /examples/module_sleep/comparing_sleep_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_sleep/comparing_sleep_precision.cpp -------------------------------------------------------------------------------- /examples/module_stre/case_conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/case_conversions.cpp -------------------------------------------------------------------------------- /examples/module_stre/character_classification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/character_classification.cpp -------------------------------------------------------------------------------- /examples/module_stre/difference_measurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/difference_measurement.cpp -------------------------------------------------------------------------------- /examples/module_stre/escaping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/escaping.cpp -------------------------------------------------------------------------------- /examples/module_stre/padding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/padding.cpp -------------------------------------------------------------------------------- /examples/module_stre/repeating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/repeating.cpp -------------------------------------------------------------------------------- /examples/module_stre/substring_checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/substring_checks.cpp -------------------------------------------------------------------------------- /examples/module_stre/substring_replacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/substring_replacement.cpp -------------------------------------------------------------------------------- /examples/module_stre/tokenization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/tokenization.cpp -------------------------------------------------------------------------------- /examples/module_stre/trimming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_stre/trimming.cpp -------------------------------------------------------------------------------- /examples/module_strong_type/strongly_typed_integer_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_strong_type/strongly_typed_integer_unit.cpp -------------------------------------------------------------------------------- /examples/module_strong_type/wrapping_cstdio_file_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_strong_type/wrapping_cstdio_file_handle.cpp -------------------------------------------------------------------------------- /examples/module_strong_type/wrapping_opengl_shader_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_strong_type/wrapping_opengl_shader_handle.cpp -------------------------------------------------------------------------------- /examples/module_struct_reflect/basic_reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_struct_reflect/basic_reflection.cpp -------------------------------------------------------------------------------- /examples/module_struct_reflect/debug_printing_with_utl_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_struct_reflect/debug_printing_with_utl_log.cpp -------------------------------------------------------------------------------- /examples/module_struct_reflect/field_and_entry_views.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_struct_reflect/field_and_entry_views.cpp -------------------------------------------------------------------------------- /examples/module_struct_reflect/iterating_over_a_generic_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_struct_reflect/iterating_over_a_generic_tuple.cpp -------------------------------------------------------------------------------- /examples/module_struct_reflect/using_reflection_to_define_binary_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_struct_reflect/using_reflection_to_define_binary_operations.cpp -------------------------------------------------------------------------------- /examples/module_table/ascii_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_table/ascii_table.cpp -------------------------------------------------------------------------------- /examples/module_table/building_tables_cell_by_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_table/building_tables_cell_by_cell.cpp -------------------------------------------------------------------------------- /examples/module_table/csv_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_table/csv_table.cpp -------------------------------------------------------------------------------- /examples/module_table/floating_point_formatting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_table/floating_point_formatting.cpp -------------------------------------------------------------------------------- /examples/module_table/latex_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_table/latex_table.cpp -------------------------------------------------------------------------------- /examples/module_table/markdown_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_table/markdown_table.cpp -------------------------------------------------------------------------------- /examples/module_table/mathematica_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_table/mathematica_table.cpp -------------------------------------------------------------------------------- /examples/module_time/accumulate_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_time/accumulate_time.cpp -------------------------------------------------------------------------------- /examples/module_time/get_elapsed_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_time/get_elapsed_time.cpp -------------------------------------------------------------------------------- /examples/module_time/get_local_date_and_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_time/get_local_date_and_time.cpp -------------------------------------------------------------------------------- /examples/module_time/set_timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/examples/module_time/set_timers.cpp -------------------------------------------------------------------------------- /include/UTL/assertion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/assertion.hpp -------------------------------------------------------------------------------- /include/UTL/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/bit.hpp -------------------------------------------------------------------------------- /include/UTL/enum_reflect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/enum_reflect.hpp -------------------------------------------------------------------------------- /include/UTL/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/integral.hpp -------------------------------------------------------------------------------- /include/UTL/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/json.hpp -------------------------------------------------------------------------------- /include/UTL/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/log.hpp -------------------------------------------------------------------------------- /include/UTL/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/math.hpp -------------------------------------------------------------------------------- /include/UTL/mvl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/mvl.hpp -------------------------------------------------------------------------------- /include/UTL/parallel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/parallel.hpp -------------------------------------------------------------------------------- /include/UTL/predef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/predef.hpp -------------------------------------------------------------------------------- /include/UTL/profiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/profiler.hpp -------------------------------------------------------------------------------- /include/UTL/progressbar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/progressbar.hpp -------------------------------------------------------------------------------- /include/UTL/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/random.hpp -------------------------------------------------------------------------------- /include/UTL/shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/shell.hpp -------------------------------------------------------------------------------- /include/UTL/sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/sleep.hpp -------------------------------------------------------------------------------- /include/UTL/stre.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/stre.hpp -------------------------------------------------------------------------------- /include/UTL/strong_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/strong_type.hpp -------------------------------------------------------------------------------- /include/UTL/struct_reflect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/struct_reflect.hpp -------------------------------------------------------------------------------- /include/UTL/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/table.hpp -------------------------------------------------------------------------------- /include/UTL/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/include/UTL/time.hpp -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /single_include/UTL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/single_include/UTL.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/common.hpp -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_arraysWithSpaces.json: -------------------------------------------------------------------------------- 1 | [[] ] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_empty-string.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_ending_with_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_false.json: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_heterogeneous.json: -------------------------------------------------------------------------------- 1 | [null, 1, "1", {}] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_null.json: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_with_1_and_newline.json: -------------------------------------------------------------------------------- 1 | [1 2 | ] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_with_several_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_array_with_several_null.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_array_with_trailing_space.json: -------------------------------------------------------------------------------- 1 | [2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number.json: -------------------------------------------------------------------------------- 1 | [123e65] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_0e+1.json: -------------------------------------------------------------------------------- 1 | [0e+1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_0e1.json: -------------------------------------------------------------------------------- 1 | [0e1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_after_space.json: -------------------------------------------------------------------------------- 1 | [ 4] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_double_close_to_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_number_double_close_to_zero.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_int_with_exp.json: -------------------------------------------------------------------------------- 1 | [20e1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_minus_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_negative_int.json: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_negative_one.json: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_negative_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_real_capital_e.json: -------------------------------------------------------------------------------- 1 | [1E22] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_real_capital_e_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1E-2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_real_capital_e_pos_exp.json: -------------------------------------------------------------------------------- 1 | [1E+2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_real_exponent.json: -------------------------------------------------------------------------------- 1 | [123e45] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_real_fraction_exponent.json: -------------------------------------------------------------------------------- 1 | [123.456e78] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_real_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1e-2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_real_pos_exponent.json: -------------------------------------------------------------------------------- 1 | [1e+2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_simple_int.json: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_number_simple_real.json: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf", "dfg":"fgh"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_basic.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_duplicated_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_object_duplicated_key.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_duplicated_key_and_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_object_duplicated_key_and_value.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_empty_key.json: -------------------------------------------------------------------------------- 1 | {"":0} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_escaped_null_in_key.json: -------------------------------------------------------------------------------- 1 | {"foo\u0000bar": 42} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_extreme_numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_object_extreme_numbers.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_long_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_object_long_strings.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_simple.json: -------------------------------------------------------------------------------- 1 | {"a":[]} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_string_unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_object_string_unicode.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_object_with_newlines.json: -------------------------------------------------------------------------------- 1 | { 2 | "a": "b" 3 | } -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_1_2_3_bytes_UTF-8_sequences.json: -------------------------------------------------------------------------------- 1 | ["\u0060\u012a\u12AB"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_accepted_surrogate_pair.json: -------------------------------------------------------------------------------- 1 | ["\uD801\udc37"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_accepted_surrogate_pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_string_accepted_surrogate_pairs.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_allowed_escapes.json: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_backslash_and_u_escaped_zero.json: -------------------------------------------------------------------------------- 1 | ["\\u0000"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_backslash_doublequotes.json: -------------------------------------------------------------------------------- 1 | ["\""] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_comments.json: -------------------------------------------------------------------------------- 1 | ["a/*b*/c/*d//e"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_double_escape_a.json: -------------------------------------------------------------------------------- 1 | ["\\a"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_double_escape_n.json: -------------------------------------------------------------------------------- 1 | ["\\n"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_escaped_control_character.json: -------------------------------------------------------------------------------- 1 | ["\u0012"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_escaped_noncharacter.json: -------------------------------------------------------------------------------- 1 | ["\uFFFF"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_in_array.json: -------------------------------------------------------------------------------- 1 | ["asd"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_in_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [ "asd"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_last_surrogates_1_and_2.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFF"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_nbsp_uescaped.json: -------------------------------------------------------------------------------- 1 | ["new\u00A0line"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_nonCharacterInUTF-8_U+10FFFF.json: -------------------------------------------------------------------------------- 1 | ["􏿿"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_nonCharacterInUTF-8_U+FFFF.json: -------------------------------------------------------------------------------- 1 | ["￿"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_null_escape.json: -------------------------------------------------------------------------------- 1 | ["\u0000"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_one-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u002c"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_pi.json: -------------------------------------------------------------------------------- 1 | ["π"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_reservedCharacterInUTF-8_U+1BFFF.json: -------------------------------------------------------------------------------- 1 | ["𛿿"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_simple_ascii.json: -------------------------------------------------------------------------------- 1 | ["asd "] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_space.json: -------------------------------------------------------------------------------- 1 | " " -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd1e"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_three-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0821"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_two-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0123"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_u+2028_line_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_u+2029_par_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_uEscape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_accept/y_string_uEscape.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_uescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new\u000Aline"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unescaped_char_delete.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode.json: -------------------------------------------------------------------------------- 1 | ["\uA66D"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicodeEscapedBackslash.json: -------------------------------------------------------------------------------- 1 | ["\u005C"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_2.json: -------------------------------------------------------------------------------- 1 | ["⍂㈴⍂"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_U+10FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFE"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_U+1FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uD83F\uDFFE"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json: -------------------------------------------------------------------------------- 1 | ["\u200B"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_U+2064_invisible_plus.json: -------------------------------------------------------------------------------- 1 | ["\u2064"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_U+FDD0_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFDD0"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_U+FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFFFE"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_unicode_escaped_double_quote.json: -------------------------------------------------------------------------------- 1 | ["\u0022"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_utf8.json: -------------------------------------------------------------------------------- 1 | ["€𝄞"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_string_with_del_character.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_lonely_false.json: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_lonely_int.json: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_lonely_negative_real.json: -------------------------------------------------------------------------------- 1 | -0.1 -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_lonely_null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_lonely_string.json: -------------------------------------------------------------------------------- 1 | "asd" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_lonely_true.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_string_empty.json: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_trailing_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_true_in_array.json: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_accept/y_structure_whitespace_array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_1_true_without_comma.json: -------------------------------------------------------------------------------- 1 | [1 true] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_a_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_array_a_invalid_utf8.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_colon_instead_of_comma.json: -------------------------------------------------------------------------------- 1 | ["": 1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_comma_after_close.json: -------------------------------------------------------------------------------- 1 | [""], -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_comma_and_number.json: -------------------------------------------------------------------------------- 1 | [,1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_double_comma.json: -------------------------------------------------------------------------------- 1 | [1,,2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_double_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["x",,] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_extra_close.json: -------------------------------------------------------------------------------- 1 | ["x"]] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["",] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_incomplete.json: -------------------------------------------------------------------------------- 1 | ["x" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_incomplete_invalid_value.json: -------------------------------------------------------------------------------- 1 | [x -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_inner_array_no_comma.json: -------------------------------------------------------------------------------- 1 | [3[4]] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_array_invalid_utf8.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_items_separated_by_semicolon.json: -------------------------------------------------------------------------------- 1 | [1:2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_just_comma.json: -------------------------------------------------------------------------------- 1 | [,] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_just_minus.json: -------------------------------------------------------------------------------- 1 | [-] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_missing_value.json: -------------------------------------------------------------------------------- 1 | [ , ""] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_newlines_unclosed.json: -------------------------------------------------------------------------------- 1 | ["a", 2 | 4 3 | ,1, -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_number_and_comma.json: -------------------------------------------------------------------------------- 1 | [1,] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_number_and_several_commas.json: -------------------------------------------------------------------------------- 1 | [1,,] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_spaces_vertical_tab_formfeed.json: -------------------------------------------------------------------------------- 1 | [" a"\f] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_star_inside.json: -------------------------------------------------------------------------------- 1 | [*] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_unclosed.json: -------------------------------------------------------------------------------- 1 | ["" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_unclosed_trailing_comma.json: -------------------------------------------------------------------------------- 1 | [1, -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_unclosed_with_new_lines.json: -------------------------------------------------------------------------------- 1 | [1, 2 | 1 3 | ,1 -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_array_unclosed_with_object_inside.json: -------------------------------------------------------------------------------- 1 | [{} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_incomplete_false.json: -------------------------------------------------------------------------------- 1 | [fals] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_incomplete_null.json: -------------------------------------------------------------------------------- 1 | [nul] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_incomplete_true.json: -------------------------------------------------------------------------------- 1 | [tru] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_multidigit_number_then_00.json: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_++.json: -------------------------------------------------------------------------------- 1 | [++1234] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_+1.json: -------------------------------------------------------------------------------- 1 | [+1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_+Inf.json: -------------------------------------------------------------------------------- 1 | [+Inf] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_-01.json: -------------------------------------------------------------------------------- 1 | [-01] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_-1.0..json: -------------------------------------------------------------------------------- 1 | [-1.0.] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_-2..json: -------------------------------------------------------------------------------- 1 | [-2.] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_-NaN.json: -------------------------------------------------------------------------------- 1 | [-NaN] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_.-1.json: -------------------------------------------------------------------------------- 1 | [.-1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_.2e-3.json: -------------------------------------------------------------------------------- 1 | [.2e-3] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0.1.2.json: -------------------------------------------------------------------------------- 1 | [0.1.2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0.3e+.json: -------------------------------------------------------------------------------- 1 | [0.3e+] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0.3e.json: -------------------------------------------------------------------------------- 1 | [0.3e] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0.e1.json: -------------------------------------------------------------------------------- 1 | [0.e1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0_capital_E+.json: -------------------------------------------------------------------------------- 1 | [0E+] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0_capital_E.json: -------------------------------------------------------------------------------- 1 | [0E] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0e+.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_0e.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_1.0e+.json: -------------------------------------------------------------------------------- 1 | [1.0e+] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_1.0e-.json: -------------------------------------------------------------------------------- 1 | [1.0e-] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_1.0e.json: -------------------------------------------------------------------------------- 1 | [1.0e] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_1_000.json: -------------------------------------------------------------------------------- 1 | [1 000.0] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_1eE2.json: -------------------------------------------------------------------------------- 1 | [1eE2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_2.e+3.json: -------------------------------------------------------------------------------- 1 | [2.e+3] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_2.e-3.json: -------------------------------------------------------------------------------- 1 | [2.e-3] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_2.e3.json: -------------------------------------------------------------------------------- 1 | [2.e3] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_9.e+.json: -------------------------------------------------------------------------------- 1 | [9.e+] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_Inf.json: -------------------------------------------------------------------------------- 1 | [Inf] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_NaN.json: -------------------------------------------------------------------------------- 1 | [NaN] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_U+FF11_fullwidth_digit_one.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_expression.json: -------------------------------------------------------------------------------- 1 | [1+2] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_hex_1_digit.json: -------------------------------------------------------------------------------- 1 | [0x1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_hex_2_digits.json: -------------------------------------------------------------------------------- 1 | [0x42] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_infinity.json: -------------------------------------------------------------------------------- 1 | [Infinity] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_invalid+-.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_invalid-negative-real.json: -------------------------------------------------------------------------------- 1 | [-123.123foo] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_invalid-utf-8-in-bigger-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_number_invalid-utf-8-in-bigger-int.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_invalid-utf-8-in-exponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_number_invalid-utf-8-in-exponent.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_invalid-utf-8-in-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_number_invalid-utf-8-in-int.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_minus_infinity.json: -------------------------------------------------------------------------------- 1 | [-Infinity] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_minus_sign_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [-foo] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_minus_space_1.json: -------------------------------------------------------------------------------- 1 | [- 1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_neg_int_starting_with_zero.json: -------------------------------------------------------------------------------- 1 | [-012] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_neg_real_without_int_part.json: -------------------------------------------------------------------------------- 1 | [-.123] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_neg_with_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | [-1x] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_real_garbage_after_e.json: -------------------------------------------------------------------------------- 1 | [1ea] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_real_with_invalid_utf8_after_e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_number_real_with_invalid_utf8_after_e.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_real_without_fractional_part.json: -------------------------------------------------------------------------------- 1 | [1.] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_starting_with_dot.json: -------------------------------------------------------------------------------- 1 | [.123] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_with_alpha.json: -------------------------------------------------------------------------------- 1 | [1.2a-3] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_with_alpha_char.json: -------------------------------------------------------------------------------- 1 | [1.8011670033376514H-308] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_number_with_leading_zero.json: -------------------------------------------------------------------------------- 1 | [012] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_bad_value.json: -------------------------------------------------------------------------------- 1 | ["x", truth] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_bracket_key.json: -------------------------------------------------------------------------------- 1 | {[: "x"} 2 | -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_comma_instead_of_colon.json: -------------------------------------------------------------------------------- 1 | {"x", null} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_double_colon.json: -------------------------------------------------------------------------------- 1 | {"x"::"b"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_emoji.json: -------------------------------------------------------------------------------- 1 | {🇨🇭} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_key_with_single_quotes.json: -------------------------------------------------------------------------------- 1 | {key: 'value'} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_lone_continuation_byte_in_key_and_trailing_comma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_object_lone_continuation_byte_in_key_and_trailing_comma.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_missing_colon.json: -------------------------------------------------------------------------------- 1 | {"a" b} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_missing_key.json: -------------------------------------------------------------------------------- 1 | {:"b"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_missing_semicolon.json: -------------------------------------------------------------------------------- 1 | {"a" "b"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_missing_value.json: -------------------------------------------------------------------------------- 1 | {"a": -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_no-colon.json: -------------------------------------------------------------------------------- 1 | {"a" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_non_string_key.json: -------------------------------------------------------------------------------- 1 | {1:1} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_non_string_key_but_huge_number_instead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_object_non_string_key_but_huge_number_instead.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_repeated_null_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_object_repeated_null_null.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_several_trailing_commas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_object_several_trailing_commas.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_single_quote.json: -------------------------------------------------------------------------------- 1 | {'a':0} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_trailing_comma.json: -------------------------------------------------------------------------------- 1 | {"id":0,} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_trailing_comment.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**/ -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_trailing_comment_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**// -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_trailing_comment_slash_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}// -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_trailing_comment_slash_open_incomplete.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/ -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_two_commas_in_a_row.json: -------------------------------------------------------------------------------- 1 | {"a":"b",,"c":"d"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_unquoted_key.json: -------------------------------------------------------------------------------- 1 | {a: "b"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_unterminated-value.json: -------------------------------------------------------------------------------- 1 | {"a":"a -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_with_single_string.json: -------------------------------------------------------------------------------- 1 | { "foo" : "bar", "a" } -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}# -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_single_space.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_1_surrogate_then_escape.json: -------------------------------------------------------------------------------- 1 | ["\uD800\"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_1_surrogate_then_escape_u.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_1_surrogate_then_escape_u1.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_1_surrogate_then_escape_u1x.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1x"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_accentuated_char_no_quotes.json: -------------------------------------------------------------------------------- 1 | [é] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_backslash_00.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_escape_x.json: -------------------------------------------------------------------------------- 1 | ["\x00"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_escaped_backslash_bad.json: -------------------------------------------------------------------------------- 1 | ["\\\"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_escaped_ctrl_char_tab.json: -------------------------------------------------------------------------------- 1 | ["\ "] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_escaped_emoji.json: -------------------------------------------------------------------------------- 1 | ["\🌀"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_incomplete_escape.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_incomplete_escaped_character.json: -------------------------------------------------------------------------------- 1 | ["\u00A"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_incomplete_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_incomplete_surrogate_escape_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_string_incomplete_surrogate_escape_invalid.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_invalid-utf-8-in-escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_string_invalid-utf-8-in-escape.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_invalid_backslash_esc.json: -------------------------------------------------------------------------------- 1 | ["\a"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_invalid_unicode_escape.json: -------------------------------------------------------------------------------- 1 | ["\uqqqq"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_invalid_utf8_after_escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_string_invalid_utf8_after_escape.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_leading_uescaped_thinspace.json: -------------------------------------------------------------------------------- 1 | [\u0020"asd"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_no_quotes_with_bad_escape.json: -------------------------------------------------------------------------------- 1 | [\n] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_single_doublequote.json: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_single_quote.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_single_string_no_double_quotes.json: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_start_escape_unclosed.json: -------------------------------------------------------------------------------- 1 | ["\ -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_unescaped_ctrl_char.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_unescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new 2 | line"] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_unescaped_tab.json: -------------------------------------------------------------------------------- 1 | [" "] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_unicode_CapitalU.json: -------------------------------------------------------------------------------- 1 | "\UA66D" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_string_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | ""x -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_100000_opening_arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_structure_100000_opening_arrays.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_U+2060_word_joined.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_UTF8_BOM_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_angle_bracket_..json: -------------------------------------------------------------------------------- 1 | <.> -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_angle_bracket_null.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_array_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [1]x -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_array_with_extra_array_close.json: -------------------------------------------------------------------------------- 1 | [1]] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_array_with_unclosed_string.json: -------------------------------------------------------------------------------- 1 | ["asd] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_ascii-unicode-identifier.json: -------------------------------------------------------------------------------- 1 | aå -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_capitalized_True.json: -------------------------------------------------------------------------------- 1 | [True] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_close_unopened_array.json: -------------------------------------------------------------------------------- 1 | 1] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_comma_instead_of_closing_brace.json: -------------------------------------------------------------------------------- 1 | {"x": true, -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_double_array.json: -------------------------------------------------------------------------------- 1 | [][] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_end_array.json: -------------------------------------------------------------------------------- 1 | ] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_incomplete_UTF8_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_structure_incomplete_UTF8_BOM.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_lone-invalid-utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_structure_lone-invalid-utf-8.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_lone-open-bracket.json: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_null-byte-outside-string.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_number_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | 2@ -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_object_followed_by_closing_object.json: -------------------------------------------------------------------------------- 1 | {}} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_object_unclosed_no_value.json: -------------------------------------------------------------------------------- 1 | {"": -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_object_with_comment.json: -------------------------------------------------------------------------------- 1 | {"a":/*comment*/"b"} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a": true} "x" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_array_apostrophe.json: -------------------------------------------------------------------------------- 1 | [' -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_array_comma.json: -------------------------------------------------------------------------------- 1 | [, -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_array_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_structure_open_array_object.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_array_open_object.json: -------------------------------------------------------------------------------- 1 | [{ -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_array_open_string.json: -------------------------------------------------------------------------------- 1 | ["a -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_array_string.json: -------------------------------------------------------------------------------- 1 | ["a" -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_object.json: -------------------------------------------------------------------------------- 1 | { -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_object_close_array.json: -------------------------------------------------------------------------------- 1 | {] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_object_comma.json: -------------------------------------------------------------------------------- 1 | {, -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_object_open_array.json: -------------------------------------------------------------------------------- 1 | {[ -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_object_open_string.json: -------------------------------------------------------------------------------- 1 | {"a -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_object_string_with_apostrophes.json: -------------------------------------------------------------------------------- 1 | {'a' -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_open_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_structure_open_open.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_single_eacute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_structure_single_eacute.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_single_star.json: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_trailing_#.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}#{} -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_uescaped_LF_before_string.json: -------------------------------------------------------------------------------- 1 | [\u000A""] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_unclosed_array.json: -------------------------------------------------------------------------------- 1 | [1 -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_unclosed_array_partial_null.json: -------------------------------------------------------------------------------- 1 | [ false, nul -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_unclosed_array_unfinished_false.json: -------------------------------------------------------------------------------- 1 | [ true, fals -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_unclosed_array_unfinished_true.json: -------------------------------------------------------------------------------- 1 | [ false, tru -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_unclosed_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/data/json_test_suite/should_reject/n_structure_unclosed_object.json -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_unicode-identifier.json: -------------------------------------------------------------------------------- 1 | å -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_whitespace_U+2060_word_joiner.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /tests/data/json_test_suite/should_reject/n_structure_whitespace_formfeed.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /tests/general_odr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/general_odr/main.cpp -------------------------------------------------------------------------------- /tests/general_odr/second.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/general_odr/second.cpp -------------------------------------------------------------------------------- /tests/general_odr/second.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/general_odr/second.hpp -------------------------------------------------------------------------------- /tests/module_assertion/assertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_assertion/assertions.cpp -------------------------------------------------------------------------------- /tests/module_bit/enum_bitflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_bit/enum_bitflags.cpp -------------------------------------------------------------------------------- /tests/module_bit/group_bit_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_bit/group_bit_operations.cpp -------------------------------------------------------------------------------- /tests/module_bit/individual_bit_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_bit/individual_bit_operations.cpp -------------------------------------------------------------------------------- /tests/module_bit/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_bit/utils.cpp -------------------------------------------------------------------------------- /tests/module_enum_reflect/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_enum_reflect/reflection.cpp -------------------------------------------------------------------------------- /tests/module_integral/rounding_integer_division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_integral/rounding_integer_division.cpp -------------------------------------------------------------------------------- /tests/module_integral/saturated_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_integral/saturated_math.cpp -------------------------------------------------------------------------------- /tests/module_json/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_json/conversions.cpp -------------------------------------------------------------------------------- /tests/module_json/object_node_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_json/object_node_api.cpp -------------------------------------------------------------------------------- /tests/module_json/parser_accepts_valid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_json/parser_accepts_valid.cpp -------------------------------------------------------------------------------- /tests/module_json/parser_rejects_invalid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_json/parser_rejects_invalid.cpp -------------------------------------------------------------------------------- /tests/module_json/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_json/reflection.cpp -------------------------------------------------------------------------------- /tests/module_log/custom_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_log/custom_sinks.cpp -------------------------------------------------------------------------------- /tests/module_log/stringifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_log/stringifier.cpp -------------------------------------------------------------------------------- /tests/module_log/styling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_log/styling.cpp -------------------------------------------------------------------------------- /tests/module_math/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_math/functions.cpp -------------------------------------------------------------------------------- /tests/module_mvl/experimental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_mvl/experimental.cpp -------------------------------------------------------------------------------- /tests/module_parallel/fuzzing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_parallel/fuzzing.cpp -------------------------------------------------------------------------------- /tests/module_parallel/parallel_for_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_parallel/parallel_for_container.cpp -------------------------------------------------------------------------------- /tests/module_parallel/parallel_for_index_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_parallel/parallel_for_index_range.cpp -------------------------------------------------------------------------------- /tests/module_parallel/parallel_for_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_parallel/parallel_for_range.cpp -------------------------------------------------------------------------------- /tests/module_parallel/parallel_reduce_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_parallel/parallel_reduce_container.cpp -------------------------------------------------------------------------------- /tests/module_parallel/parallel_reduce_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_parallel/parallel_reduce_range.cpp -------------------------------------------------------------------------------- /tests/module_parallel/thread_pool_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_parallel/thread_pool_basics.cpp -------------------------------------------------------------------------------- /tests/module_random/mean_min_max_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_random/mean_min_max_sanity.cpp -------------------------------------------------------------------------------- /tests/module_random/uniform_int_coverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_random/uniform_int_coverage.cpp -------------------------------------------------------------------------------- /tests/module_random/uniform_int_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_random/uniform_int_range.cpp -------------------------------------------------------------------------------- /tests/module_random/uniform_real_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_random/uniform_real_range.cpp -------------------------------------------------------------------------------- /tests/module_shell/shell_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_shell/shell_commands.cpp -------------------------------------------------------------------------------- /tests/module_stre/case_conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/case_conversions.cpp -------------------------------------------------------------------------------- /tests/module_stre/character_classification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/character_classification.cpp -------------------------------------------------------------------------------- /tests/module_stre/difference_measurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/difference_measurement.cpp -------------------------------------------------------------------------------- /tests/module_stre/escaping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/escaping.cpp -------------------------------------------------------------------------------- /tests/module_stre/padding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/padding.cpp -------------------------------------------------------------------------------- /tests/module_stre/repeating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/repeating.cpp -------------------------------------------------------------------------------- /tests/module_stre/substring_checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/substring_checks.cpp -------------------------------------------------------------------------------- /tests/module_stre/substring_replacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/substring_replacement.cpp -------------------------------------------------------------------------------- /tests/module_stre/tokenization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/tokenization.cpp -------------------------------------------------------------------------------- /tests/module_stre/trimming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_stre/trimming.cpp -------------------------------------------------------------------------------- /tests/module_strong_type/arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_strong_type/arithmetic.cpp -------------------------------------------------------------------------------- /tests/module_strong_type/unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_strong_type/unique.cpp -------------------------------------------------------------------------------- /tests/module_struct_reflect/perfect_forwarding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_struct_reflect/perfect_forwarding.cpp -------------------------------------------------------------------------------- /tests/module_struct_reflect/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_struct_reflect/reflection.cpp -------------------------------------------------------------------------------- /tests/module_table/formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_table/formats.cpp -------------------------------------------------------------------------------- /tests/module_time/unit_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/module_time/unit_split.cpp -------------------------------------------------------------------------------- /tests/thirdparty/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitriBogdanov/UTL/HEAD/tests/thirdparty/doctest.h --------------------------------------------------------------------------------