├── .github └── workflows │ └── KerbalBuildTest.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── VERSION ├── cmake ├── Modules │ ├── aux_headers.cmake │ ├── coroutine.cmake │ ├── instruction_extensions.cmake │ └── list_ext.cmake ├── config.cmake.in ├── cpack.cmake ├── cpack │ ├── config.cmake │ ├── config │ │ └── wix_patch.cmake │ └── mypack_nuget │ │ ├── Kerbal.nuspec │ │ └── build │ │ └── Kerbal.targets ├── gnuInstall.cmake ├── header_integration.cmake ├── modules.cmake └── version.cmake ├── doxygen └── Doxyfile ├── include ├── CMakeLists.txt └── kerbal │ ├── algorithm │ ├── binary_search │ │ ├── binary_search.hpp │ │ ├── binary_search_hint.hpp │ │ ├── equal_range.hpp │ │ ├── lower_bound.hpp │ │ ├── lower_bound_backward.hpp │ │ ├── lower_bound_hint.hpp │ │ ├── upper_bound.hpp │ │ ├── upper_bound_backward.hpp │ │ └── upper_bound_hint.hpp │ ├── dynamic_programming.hpp │ ├── heap.hpp │ ├── kmp.hpp │ ├── modifier │ │ ├── copy.hpp │ │ ├── copy_backward.hpp │ │ ├── copy_backward_if.hpp │ │ ├── copy_if.hpp │ │ ├── copy_n.hpp │ │ ├── detail │ │ │ └── copy_n │ │ │ │ └── basic_copy_n.hpp │ │ ├── fill.hpp │ │ ├── inplace_merge.hpp │ │ ├── iota.hpp │ │ ├── merge.hpp │ │ ├── move.hpp │ │ ├── move_backward.hpp │ │ ├── replace.hpp │ │ ├── replace_if.hpp │ │ ├── reverse.hpp │ │ ├── reverse_copy.hpp │ │ ├── rotate.hpp │ │ ├── rotate_copy.hpp │ │ ├── transform.hpp │ │ └── unique.hpp │ ├── partition.hpp │ ├── querier │ │ ├── adjacent_find.hpp │ │ ├── all_of.hpp │ │ ├── any_of.hpp │ │ ├── count.hpp │ │ ├── count_if.hpp │ │ ├── find.hpp │ │ ├── find_first_of.hpp │ │ ├── find_if.hpp │ │ ├── find_if_not.hpp │ │ ├── for_each.hpp │ │ ├── none_of.hpp │ │ └── rfor_each.hpp │ ├── set │ │ ├── includes.hpp │ │ ├── set_difference.hpp │ │ ├── set_intersection.hpp │ │ ├── set_symmetric_difference.hpp │ │ └── set_union.hpp │ ├── sort │ │ ├── bubble_sort.hpp │ │ ├── detail │ │ │ ├── actual_bit_width.hpp │ │ │ ├── merge_sort_merge.hpp │ │ │ └── quick_sort_pivot.hpp │ │ ├── heap_sort.hpp │ │ ├── inplace_merge_sort.hpp │ │ ├── insertion_sort.hpp │ │ ├── intro_sort.hpp │ │ ├── is_sorted.hpp │ │ ├── merge_sort.hpp │ │ ├── pigeonhole_sort.hpp │ │ ├── quick_sort.hpp │ │ ├── radix_sort.hpp │ │ ├── selection_sort.hpp │ │ ├── shell_sort.hpp │ │ ├── sort.hpp │ │ └── stable_sort.hpp │ └── swap.hpp │ ├── any │ ├── any.hpp │ ├── any │ │ └── any.fwd.hpp │ └── bad_any_cast.hpp │ ├── assign │ ├── assign_list.hpp │ ├── assign_list │ │ └── assign_list.fwd.hpp │ ├── generic_assign.hpp │ ├── generic_assign │ │ └── generic_assign.fwd.hpp │ └── ilist.hpp │ ├── autonm │ ├── forward_list.hpp │ ├── forward_list │ │ └── forward_list.fwd.hpp │ ├── list.hpp │ ├── list │ │ └── list.fwd.hpp │ ├── semi_allocator.hpp │ └── semi_allocator │ │ ├── default_delete_semi_allocator.hpp │ │ ├── discard_deallocate_semi_allocator.hpp │ │ └── semi_allocator_base.hpp │ ├── bitset │ ├── detail │ │ ├── bitset_size_unrelated.hpp │ │ └── default_block_type.hpp │ ├── static_bitset.hpp │ └── static_bitset │ │ └── static_bitset.fwd.hpp │ ├── compare │ ├── basic_compare.hpp │ ├── binary_type_compare.hpp │ ├── minmax.hpp │ ├── minmax_element.hpp │ ├── sequence_compare.hpp │ ├── sequence_compare │ │ └── sequence_compare.fwd.hpp │ └── std_compare │ │ └── std_compare.fwd.hpp │ ├── compatibility │ ├── alignas.hpp │ ├── alignof.hpp │ ├── attribute_unused.hpp │ ├── chrono_suffix.hpp │ ├── chrono_suffix │ │ └── detail │ │ │ └── chrono_suffix.cxx11.part.hpp │ ├── constexpr.hpp │ ├── cv_qualified_function.hpp │ ├── fixed_width_integer.hpp │ ├── is_constant_evaluated.hpp │ ├── method_overload_tag.hpp │ ├── move.hpp │ ├── namespace_std_scope.hpp │ ├── noexcept.hpp │ ├── static_assert.hpp │ ├── tick_count.hpp │ ├── tick_count │ │ └── detail │ │ │ ├── tick_count.unix.part.hpp │ │ │ ├── tick_count.wasm.part.hpp │ │ │ └── tick_count.win.part.hpp │ └── unreachable.hpp │ ├── config │ ├── architecture.hpp │ ├── compiler_id.hpp │ ├── compiler_private.hpp │ ├── cxx_stdlib.hpp │ ├── detail │ │ ├── architecture │ │ │ ├── _0_x86.part.hpp │ │ │ ├── _1_amd64.part.hpp │ │ │ ├── _2_arm.part.hpp │ │ │ ├── _3_aarch64.part.hpp │ │ │ ├── _4_wasm.part.hpp │ │ │ ├── _5_riscv.part.hpp │ │ │ └── _6_loongarch64.part.hpp │ │ ├── compiler_id │ │ │ ├── _0_gnu.part.hpp │ │ │ ├── _1_clang.part.hpp │ │ │ ├── _2_msvc.part.hpp │ │ │ └── _3_icc.part.hpp │ │ ├── compiler_private │ │ │ ├── _0_gnu.part.hpp │ │ │ ├── _1_clang.part.hpp │ │ │ ├── _2_msvc.part.hpp │ │ │ └── _3_icc.part.hpp │ │ ├── cxx_stdlib │ │ │ ├── _0_libstdcxx.part.hpp │ │ │ ├── _1_libcxx.part.hpp │ │ │ └── _2_msvc.part.hpp │ │ ├── system │ │ │ ├── _0_freestanding.part.hpp │ │ │ ├── _1_windows.part.hpp │ │ │ ├── _2_linux.part.hpp │ │ │ ├── _3_apple.part.hpp │ │ │ ├── _4_android.part.hpp │ │ │ └── _5_wasm.part.hpp │ │ └── unexpected_compiler_error.part.hpp │ ├── exceptions.hpp │ └── system.hpp │ ├── container │ ├── array.hpp │ ├── array │ │ ├── array.decl.hpp │ │ ├── array.fwd.hpp │ │ └── array.impl.hpp │ ├── associative_container_facility │ │ ├── associative_unique_insert_r.hpp │ │ ├── key_compare_is_transparent.hpp │ │ ├── key_extractors │ │ │ ├── detail │ │ │ │ ├── tuple_first_extractor_has_first_data_member.hpp │ │ │ │ └── tuple_first_extractor_has_first_member_function.hpp │ │ │ ├── identity_extractor.hpp │ │ │ └── tuple_first_extractor.hpp │ │ ├── map_data.hpp │ │ ├── map_from_iter_pair_tad_traits.hpp │ │ └── unique_tag_t.hpp │ ├── avl_map.hpp │ ├── avl_map │ │ ├── avl_map.decl.hpp │ │ ├── avl_map.fwd.hpp │ │ └── avl_map.impl.hpp │ ├── avl_multimap.hpp │ ├── avl_multimap │ │ ├── avl_multimap.decl.hpp │ │ ├── avl_multimap.fwd.hpp │ │ └── avl_multimap.impl.hpp │ ├── avl_multiset.hpp │ ├── avl_multiset │ │ ├── avl_multiset.decl.hpp │ │ ├── avl_multiset.fwd.hpp │ │ └── avl_multiset.impl.hpp │ ├── avl_ordered.hpp │ ├── avl_ordered │ │ ├── avl_ordered.decl.hpp │ │ ├── avl_ordered.fwd.hpp │ │ └── avl_ordered.impl.hpp │ ├── avl_set.hpp │ ├── avl_set │ │ ├── avl_set.decl.hpp │ │ ├── avl_set.fwd.hpp │ │ └── avl_set.impl.hpp │ ├── detail │ │ ├── array_base │ │ │ ├── array_base.fwd.hpp │ │ │ └── array_iterator.hpp │ │ ├── avl_base.hpp │ │ ├── avl_base │ │ │ ├── avl_base.decl.hpp │ │ │ ├── avl_base.fwd.hpp │ │ │ ├── avl_base.impl.hpp │ │ │ ├── avl_iterator.hpp │ │ │ └── avl_node.hpp │ │ ├── container_allocator_overload.hpp │ │ ├── container_rebind_allocator_overload.hpp │ │ ├── flat_map_base.hpp │ │ ├── flat_map_common_base.hpp │ │ ├── flat_multimap_base.hpp │ │ ├── flat_multiset_base.hpp │ │ ├── flat_ordered_base.hpp │ │ ├── flat_set_base.hpp │ │ ├── flat_set_common_base.hpp │ │ ├── forward_list_base.hpp │ │ ├── forward_list_base │ │ │ ├── forward_list_base.decl.hpp │ │ │ ├── forward_list_base.fwd.hpp │ │ │ ├── forward_list_base.impl.hpp │ │ │ └── forward_list_iterator.hpp │ │ ├── list_base.hpp │ │ ├── list_base │ │ │ ├── list_base.decl.hpp │ │ │ ├── list_base.fwd.hpp │ │ │ ├── list_base.impl.hpp │ │ │ ├── list_iterator.hpp │ │ │ └── list_node.hpp │ │ ├── single_list_base.hpp │ │ ├── single_list_base │ │ │ ├── single_list_base.decl.hpp │ │ │ ├── single_list_base.fwd.hpp │ │ │ ├── single_list_base.impl.hpp │ │ │ ├── single_list_iterator.hpp │ │ │ └── single_list_node.hpp │ │ ├── static_queue_base.hpp │ │ ├── static_vector_base.hpp │ │ ├── static_vector_base │ │ │ ├── static_vector_base.decl.hpp │ │ │ ├── static_vector_base.fwd.hpp │ │ │ ├── static_vector_base.impl.hpp │ │ │ └── static_vector_iterator.hpp │ │ ├── vector_base.hpp │ │ └── vector_base │ │ │ ├── vector_base.decl.hpp │ │ │ ├── vector_base.fwd.hpp │ │ │ ├── vector_base.impl.hpp │ │ │ └── vector_iterator.hpp │ ├── flat_map.hpp │ ├── flat_map │ │ ├── flat_map.decl.hpp │ │ ├── flat_map.fwd.hpp │ │ └── flat_map.impl.hpp │ ├── flat_multimap.hpp │ ├── flat_multimap │ │ ├── flat_multimap.decl.hpp │ │ ├── flat_multimap.fwd.hpp │ │ └── flat_multimap.impl.hpp │ ├── flat_multiset.hpp │ ├── flat_multiset │ │ ├── flat_multiset.decl.hpp │ │ ├── flat_multiset.fwd.hpp │ │ └── flat_multiset.impl.hpp │ ├── flat_ordered.hpp │ ├── flat_ordered │ │ ├── flat_ordered.decl.hpp │ │ ├── flat_ordered.fwd.hpp │ │ └── flat_ordered.impl.hpp │ ├── flat_set.hpp │ ├── flat_set │ │ ├── flat_set.decl.hpp │ │ ├── flat_set.fwd.hpp │ │ └── flat_set.impl.hpp │ ├── forward_list.hpp │ ├── forward_list │ │ ├── forward_list.decl.hpp │ │ ├── forward_list.fwd.hpp │ │ └── forward_list.impl.hpp │ ├── linked_queue.hpp │ ├── linked_stack.hpp │ ├── list.hpp │ ├── list │ │ ├── list.decl.hpp │ │ ├── list.fwd.hpp │ │ └── list.impl.hpp │ ├── nonmember_container_access.hpp │ ├── priority_queue.hpp │ ├── single_list.hpp │ ├── single_list │ │ ├── single_list.decl.hpp │ │ ├── single_list.fwd.hpp │ │ └── single_list.impl.hpp │ ├── static_container_exception.hpp │ ├── static_flat_map.hpp │ ├── static_flat_map │ │ ├── static_flat_map.decl.hpp │ │ ├── static_flat_map.fwd.hpp │ │ └── static_flat_map.impl.hpp │ ├── static_flat_multimap.hpp │ ├── static_flat_multimap │ │ ├── static_flat_multimap.decl.hpp │ │ ├── static_flat_multimap.fwd.hpp │ │ └── static_flat_multimap.impl.hpp │ ├── static_flat_multiset.hpp │ ├── static_flat_multiset │ │ ├── static_flat_multiset.decl.hpp │ │ ├── static_flat_multiset.fwd.hpp │ │ └── static_flat_multiset.impl.hpp │ ├── static_flat_set.hpp │ ├── static_flat_set │ │ ├── static_flat_set.decl.hpp │ │ ├── static_flat_set.fwd.hpp │ │ └── static_flat_set.impl.hpp │ ├── static_ordered.hpp │ ├── static_ordered │ │ ├── static_ordered.decl.hpp │ │ ├── static_ordered.fwd.hpp │ │ └── static_ordered.impl.hpp │ ├── static_priority_queue.hpp │ ├── static_queue.hpp │ ├── static_stack.hpp │ ├── static_vector.hpp │ ├── static_vector │ │ ├── static_vector.decl.hpp │ │ ├── static_vector.fwd.hpp │ │ └── static_vector.impl.hpp │ ├── vector.hpp │ └── vector │ │ ├── vector.decl.hpp │ │ ├── vector.fwd.hpp │ │ └── vector.impl.hpp │ ├── coroutine │ ├── config.hpp │ ├── detail │ │ └── exp_compat.hpp │ ├── done_coroutine.hpp │ ├── generator.hpp │ └── generator │ │ ├── bad_generator.hpp │ │ ├── detail │ │ ├── generator_iterator.decl.hpp │ │ ├── generator_iterator.impl.hpp │ │ └── generator_promise_base.hpp │ │ ├── generator.decl.hpp │ │ ├── generator.fwd.hpp │ │ └── generator.impl.hpp │ ├── function │ ├── bad_function_call.hpp │ ├── bad_function_cast.hpp │ ├── detail │ │ └── is_function_embedded_stored_type.hpp │ ├── function.hpp │ ├── function │ │ ├── detail │ │ │ └── function.cxx11.part.hpp │ │ └── function.fwd.hpp │ ├── function_traits.hpp │ ├── identity.hpp │ ├── invoke.hpp │ ├── invoke │ │ ├── detail │ │ │ ├── invoke.cxx11.part.hpp │ │ │ ├── invoke_is_nothrow.cxx11.part.hpp │ │ │ ├── invoke_overload_ver.hpp │ │ │ ├── invoke_overload_ver_selector.cxx11.part.hpp │ │ │ ├── invoke_overload_ver_selector.cxx98.part.hpp │ │ │ ├── invoke_r.cxx11.part.hpp │ │ │ ├── invoke_r.cxx98.part.hpp │ │ │ ├── invoke_r_is_nothrow.cxx11.part.hpp │ │ │ └── invoke_result.cxx11.part.hpp │ │ ├── invoke_is_nothrow.hpp │ │ ├── invoke_overload_ver_selector.hpp │ │ ├── invoke_r_is_nothrow.hpp │ │ └── invoke_result.hpp │ ├── invoke_r.hpp │ ├── move_only_function.hpp │ └── move_only_function │ │ ├── detail │ │ └── move_only_function.cxx11.part.hpp │ │ └── move_only_function.fwd.hpp │ ├── hash │ ├── detail │ │ └── char4tolong1.hpp │ ├── hash.hpp │ ├── murmur_hash2.hpp │ ├── sha1.hpp │ └── sha1 │ │ ├── detail │ │ ├── sha1_context_base.hpp │ │ ├── sha1_transform_overload.hpp │ │ └── sha1_transform_overload │ │ │ ├── sha1_transform_overload.fast.hpp │ │ │ └── sha1_transform_overload.size.hpp │ │ ├── sha1.decl.hpp │ │ ├── sha1.fwd.hpp │ │ ├── sha1.impl.hpp │ │ └── sha1_result.hpp │ ├── iterator │ ├── concept_constraint.hpp │ ├── general_back_inserter.hpp │ ├── iterator.hpp │ ├── iterator_traits.hpp │ ├── move_iterator.hpp │ ├── move_iterator │ │ └── detail │ │ │ └── move_iterator.cxx11.part.hpp │ ├── reverse_iterator.hpp │ ├── stride_iterator.hpp │ ├── transform_iterator.hpp │ └── transform_iterator │ │ ├── detail │ │ ├── transform_iterator_impl._0_input.part.hpp │ │ ├── transform_iterator_impl._1_forward.part.hpp │ │ ├── transform_iterator_impl._2_bid.part.hpp │ │ └── transform_iterator_impl._3_random.part.hpp │ │ ├── transform_iterator.decl.hpp │ │ ├── transform_iterator.fwd.hpp │ │ └── transform_iterator.impl.hpp │ ├── macro │ ├── join_line.hpp │ ├── macro_concat.hpp │ └── ppexpand.hpp │ ├── memory │ ├── allocator │ │ ├── default_allocator.hpp │ │ ├── default_allocator │ │ │ ├── default_allocator.decl.hpp │ │ │ ├── default_allocator.fwd.hpp │ │ │ └── default_allocator.impl.hpp │ │ ├── fixed_size_node_allocator.hpp │ │ ├── fixed_size_node_allocator │ │ │ ├── fixed_size_node_allocator.decl.hpp │ │ │ ├── fixed_size_node_allocator.fwd.hpp │ │ │ └── fixed_size_node_allocator.impl.hpp │ │ ├── is_allocator.hpp │ │ ├── malloc_allocator.hpp │ │ ├── malloc_allocator │ │ │ ├── malloc_allocator.decl.hpp │ │ │ ├── malloc_allocator.fwd.hpp │ │ │ └── malloc_allocator.impl.hpp │ │ ├── monotonic_allocator.hpp │ │ ├── monotonic_allocator │ │ │ ├── monotonic_allocator.decl.hpp │ │ │ ├── monotonic_allocator.fwd.hpp │ │ │ └── monotonic_allocator.impl.hpp │ │ ├── over_aligned_allocator.hpp │ │ ├── over_aligned_allocator │ │ │ ├── over_aligned_allocator.decl.hpp │ │ │ ├── over_aligned_allocator.fwd.hpp │ │ │ └── over_aligned_allocator.impl.hpp │ │ ├── reallocable_allocator.hpp │ │ ├── std_allocator │ │ │ └── std_allocator.fwd.hpp │ │ └── std_pmr_allocator │ │ │ └── std_pmr_allocator.fwd.hpp │ ├── allocator_traits.hpp │ ├── allocator_traits │ │ ├── allocate_one.hpp │ │ ├── allow_deallocate_null.hpp │ │ ├── const_pointer_type.hpp │ │ ├── const_void_pointer_type.hpp │ │ ├── construct.hpp │ │ ├── deallocate_one.hpp │ │ ├── destroy.hpp │ │ ├── difference_type.hpp │ │ ├── is_always_equal.hpp │ │ ├── max_size.hpp │ │ ├── minimum_alignment.hpp │ │ ├── pointer_type.hpp │ │ ├── propagate_on_container_copy_assignment.hpp │ │ ├── propagate_on_container_move_assignment.hpp │ │ ├── propagate_on_container_swap.hpp │ │ ├── reallocate.hpp │ │ ├── rebind_alloc.hpp │ │ ├── size_type.hpp │ │ └── void_pointer_type.hpp │ ├── any_storage.hpp │ ├── bad_alloc.hpp │ ├── bad_array_new_length.hpp │ ├── basic_t.hpp │ ├── default_delete.hpp │ ├── detail │ │ ├── can_be_nothrow_advance_iterator.hpp │ │ ├── can_be_trivially_destroy_ua.hpp │ │ └── raw_storage │ │ │ ├── raw_storage_base.cxx11.part.hpp │ │ │ └── raw_storage_base.cxx98.part.hpp │ ├── guard.hpp │ ├── new │ │ ├── basic_new.hpp │ │ ├── nothrow_new.hpp │ │ └── over_aligned_new.hpp │ ├── nothrow_t.hpp │ ├── pointer_alignment.hpp │ ├── pointer_traits.hpp │ ├── raw_storage.hpp │ ├── raw_storage_uninitialized.hpp │ ├── raw_storage_uninitialized │ │ ├── construct.hpp │ │ └── destroy.hpp │ ├── uninitialized.hpp │ ├── uninitialized │ │ ├── construct.hpp │ │ ├── default_construct.hpp │ │ └── destroy.hpp │ ├── uninitialized_using_allocator.hpp │ ├── uninitialized_using_allocator │ │ ├── construct_using_allocator.hpp │ │ └── destroy_using_allocator.hpp │ └── unique_ptr.hpp │ ├── numeric │ ├── bit.hpp │ ├── bit │ │ ├── countl_zero.hpp │ │ ├── countr_zero.hpp │ │ ├── detail │ │ │ ├── countl_zero │ │ │ │ ├── countl_zero.gnu_builtin.part.hpp │ │ │ │ └── countl_zero.plain.part.hpp │ │ │ └── countr_zero │ │ │ │ ├── countr_zero.bsearch.part.hpp │ │ │ │ ├── countr_zero.gnu_builtin.part.hpp │ │ │ │ └── countr_zero.plain.part.hpp │ │ ├── popcount.hpp │ │ └── single_bit_bsearch.hpp │ └── numeric_limits.hpp │ ├── openmp │ ├── disable_warning.hpp │ └── mutex.hpp │ ├── operators │ ├── addable.hpp │ ├── dereferenceable.hpp │ ├── equality_comparable.hpp │ ├── incr_decr.hpp │ ├── less_than_comparable.hpp │ └── subtractable.hpp │ ├── optional │ ├── bad_optional_access.hpp │ ├── is_optional.hpp │ ├── nullopt.hpp │ ├── optional.hpp │ └── optional │ │ ├── detail │ │ ├── optional_compare.part.hpp │ │ └── optional_hash_template.part.hpp │ │ └── optional.fwd.hpp │ ├── parallel │ ├── thread.hpp │ ├── thread │ │ ├── detail │ │ │ ├── thread.common.decl.part.hpp │ │ │ ├── thread.common.fwd.part.hpp │ │ │ ├── thread.common.impl.part.hpp │ │ │ ├── thread.posix.decl.part.hpp │ │ │ ├── thread.posix.impl.part.hpp │ │ │ ├── thread.win.decl.part.hpp │ │ │ └── thread.win.impl.part.hpp │ │ ├── thread.decl.hpp │ │ ├── thread.fwd.hpp │ │ └── thread.impl.hpp │ ├── thread_create_failed.hpp │ └── thread_pool.hpp │ ├── random │ ├── distribution │ │ ├── bernoulli_distribution.hpp │ │ ├── binomial_distribution.hpp │ │ ├── exponential_distribution.hpp │ │ ├── geometric_distribution.hpp │ │ ├── normal_distribution.hpp │ │ ├── poisson_distribution.hpp │ │ └── uniform_real_distribution.hpp │ ├── engine │ │ ├── detail │ │ │ ├── hardware_engine │ │ │ │ ├── hardware_engine_uint16_t.part.hpp │ │ │ │ ├── hardware_engine_uint16_t │ │ │ │ │ └── hardware_engine_uint16_t.rdrnd.part.hpp │ │ │ │ ├── hardware_engine_uint32_t.part.hpp │ │ │ │ ├── hardware_engine_uint32_t │ │ │ │ │ └── hardware_engine_uint32_t.rdrnd.part.hpp │ │ │ │ ├── hardware_engine_uint64_t.part.hpp │ │ │ │ └── hardware_engine_uint64_t │ │ │ │ │ ├── hardware_engine_uint64_t.arm_rng.part.hpp │ │ │ │ │ └── hardware_engine_uint64_t.rdrnd.part.hpp │ │ │ ├── mt_generate_copy_n │ │ │ │ ├── mt_generate_copy_n.avx2.part.hpp │ │ │ │ ├── mt_generate_copy_n.avx512f.part.hpp │ │ │ │ ├── mt_generate_copy_n.neon.part.hpp │ │ │ │ ├── mt_generate_copy_n.plain.part.hpp │ │ │ │ ├── mt_generate_copy_n.sse2.part.hpp │ │ │ │ └── mt_generate_copy_n.sve.part.hpp │ │ │ ├── mt_generate_copy_n_helper.hpp │ │ │ ├── mt_twist │ │ │ │ ├── mt_twist.avx2.part.hpp │ │ │ │ ├── mt_twist.avx512f.part.hpp │ │ │ │ ├── mt_twist.neon.part.hpp │ │ │ │ ├── mt_twist.plain.part.hpp │ │ │ │ ├── mt_twist.sse2.part.hpp │ │ │ │ ├── mt_twist.sse41.part.hpp │ │ │ │ └── mt_twist.sve.part.hpp │ │ │ └── mt_twist_helper.hpp │ │ ├── discard_block_engine.hpp │ │ ├── hardware_engine.hpp │ │ ├── hardware_engine │ │ │ ├── hardware_engine.fwd.hpp │ │ │ └── hardware_engine_failure.hpp │ │ ├── istream_engine.hpp │ │ ├── knuth_b_engine.hpp │ │ ├── linear_congruential_engine.hpp │ │ ├── mersenne_twister_engine.hpp │ │ ├── shuffle_order_engine.hpp │ │ └── subtract_with_carry_engine.hpp │ └── noise │ │ └── perlin_noise.hpp │ ├── smath │ ├── add_mod_sm.hpp │ ├── countr_zero.hpp │ ├── detail │ │ └── is_never_overflow_for_mul_mod.hpp │ ├── has_single_bit.hpp │ ├── max_sa_sb.hpp │ ├── multiply_mod_a_b_sm.hpp │ ├── multiply_mod_sa_b_sm.hpp │ ├── multiply_mod_sa_sb_sm.hpp │ ├── pow_mod_sa_n_sm.hpp │ ├── pow_mod_sa_sn_sm.hpp │ ├── repeat_byte.hpp │ ├── sigma_pow_mod_sa_n_sm.hpp │ ├── two_pow_sn.hpp │ ├── two_pow_sn_minus_one.hpp │ └── xmod.hpp │ ├── test │ ├── object_count.hpp │ ├── runtime_timer.hpp │ ├── test.hpp │ ├── test_case.hpp │ └── test_case │ │ ├── test_case.decl.hpp │ │ └── test_case.impl.hpp │ ├── tmp │ ├── tppter.hpp │ └── type_vector.hpp │ ├── ts │ └── modules_ts │ │ └── modules_ts.hpp │ ├── type_traits │ ├── add_const.hpp │ ├── add_const_lvalue_reference.hpp │ ├── add_const_rvalue_reference.hpp │ ├── add_cv.hpp │ ├── add_lvalue_reference.hpp │ ├── add_pointer.hpp │ ├── add_rvalue_reference.hpp │ ├── add_volatile.hpp │ ├── aligned_storage.hpp │ ├── can_be_empty_base.hpp │ ├── conditional.hpp │ ├── copy_const.hpp │ ├── copy_cv.hpp │ ├── copy_lvalue_reference.hpp │ ├── copy_rvalue_reference.hpp │ ├── copy_volatile.hpp │ ├── decay.hpp │ ├── detail │ │ ├── add_const_rvalue_reference │ │ │ └── add_const_rvalue_reference.cxx11.part.hpp │ │ ├── add_rvalue_reference │ │ │ └── add_rvalue_reference.cxx11.part.hpp │ │ ├── compiler_intrinsics │ │ │ ├── compiler_intrinsics.hpp │ │ │ └── part │ │ │ │ ├── _0_gnu.part.hpp │ │ │ │ ├── _1_clang.part.hpp │ │ │ │ ├── _2_msvc.part.hpp │ │ │ │ └── _3_icc.part.hpp │ │ ├── copy_rvalue_reference │ │ │ └── copy_rvalue_reference.cxx11.part.hpp │ │ ├── is_abstract │ │ │ ├── is_abstract.intrin.part.hpp │ │ │ ├── is_abstract.part.hpp │ │ │ ├── is_abstract.std.part.hpp │ │ │ ├── try_test_is_abstract.defi.part.hpp │ │ │ ├── try_test_is_abstract.guess.part.hpp │ │ │ └── try_test_is_abstract.part.hpp │ │ ├── is_assignable │ │ │ ├── is_assignable.intrin.part.hpp │ │ │ ├── is_assignable.part.hpp │ │ │ ├── is_assignable.sfinae.part.hpp │ │ │ ├── is_assignable.std.part.hpp │ │ │ ├── try_test_is_assignable.defi.part.hpp │ │ │ ├── try_test_is_assignable.guess.part.hpp │ │ │ └── try_test_is_assignable.part.hpp │ │ ├── is_base_of │ │ │ ├── is_base_of.intrin.part.hpp │ │ │ ├── is_base_of.part.hpp │ │ │ ├── is_base_of.std.part.hpp │ │ │ ├── try_test_is_base_of.defi.part.hpp │ │ │ ├── try_test_is_base_of.guess.part.hpp │ │ │ └── try_test_is_base_of.part.hpp │ │ ├── is_class │ │ │ ├── is_class.intrin.part.hpp │ │ │ ├── is_class.part.hpp │ │ │ ├── is_class.std.part.hpp │ │ │ ├── try_test_is_class.defi.part.hpp │ │ │ ├── try_test_is_class.guess.part.hpp │ │ │ └── try_test_is_class.part.hpp │ │ ├── is_constructible │ │ │ ├── is_constructible.intrin.part.hpp │ │ │ ├── is_constructible.part.hpp │ │ │ ├── is_constructible.sfinae11.part.hpp │ │ │ ├── is_constructible.sfinae98.part.hpp │ │ │ ├── try_test_is_constructible.defi.part.hpp │ │ │ ├── try_test_is_constructible.guess.part.hpp │ │ │ └── try_test_is_constructible.part.hpp │ │ ├── is_copy_assignable │ │ │ ├── is_copy_assignable.intrin.part.hpp │ │ │ ├── is_copy_assignable.isa.part.hpp │ │ │ ├── is_copy_assignable.part.hpp │ │ │ ├── try_test_is_copy_assignable.defi.part.hpp │ │ │ ├── try_test_is_copy_assignable.guess.part.hpp │ │ │ └── try_test_is_copy_assignable.part.hpp │ │ ├── is_copy_constructible │ │ │ ├── is_copy_constructible.intrin.part.hpp │ │ │ ├── is_copy_constructible.isc.part.hpp │ │ │ ├── is_copy_constructible.part.hpp │ │ │ ├── try_test_is_copy_constructible.defi.part.hpp │ │ │ ├── try_test_is_copy_constructible.guess.part.hpp │ │ │ └── try_test_is_copy_constructible.part.hpp │ │ ├── is_default_constructible │ │ │ ├── is_default_constructible.intrin.part.hpp │ │ │ ├── is_default_constructible.isc.part.hpp │ │ │ ├── is_default_constructible.part.hpp │ │ │ ├── try_test_is_default_constructible.defi.part.hpp │ │ │ ├── try_test_is_default_constructible.guess.part.hpp │ │ │ └── try_test_is_default_constructible.part.hpp │ │ ├── is_destructible │ │ │ ├── is_destructible.intrin.part.hpp │ │ │ ├── is_destructible.part.hpp │ │ │ ├── is_destructible.sfinae.part.hpp │ │ │ ├── try_test_is_destructible.defi.part.hpp │ │ │ ├── try_test_is_destructible.guess.part.hpp │ │ │ └── try_test_is_destructible.part.hpp │ │ ├── is_empty │ │ │ ├── is_empty.intrin.part.hpp │ │ │ ├── is_empty.part.hpp │ │ │ ├── is_empty.std.part.hpp │ │ │ ├── try_test_is_empty.defi.part.hpp │ │ │ ├── try_test_is_empty.guess.part.hpp │ │ │ └── try_test_is_empty.part.hpp │ │ ├── is_enum │ │ │ ├── is_enum.intrin.part.hpp │ │ │ ├── is_enum.part.hpp │ │ │ ├── is_enum.std.part.hpp │ │ │ ├── try_test_is_enum.defi.part.hpp │ │ │ ├── try_test_is_enum.guess.part.hpp │ │ │ └── try_test_is_enum.part.hpp │ │ ├── is_final │ │ │ ├── is_final.intrin.part.hpp │ │ │ ├── is_final.part.hpp │ │ │ ├── is_final.std.part.hpp │ │ │ ├── try_test_is_final.defi.part.hpp │ │ │ ├── try_test_is_final.guess.part.hpp │ │ │ └── try_test_is_final.part.hpp │ │ ├── is_move_assignable │ │ │ ├── is_move_assignable.intrin.part.hpp │ │ │ ├── is_move_assignable.isa.part.hpp │ │ │ ├── is_move_assignable.part.hpp │ │ │ ├── try_test_is_move_assignable.defi.part.hpp │ │ │ ├── try_test_is_move_assignable.guess.part.hpp │ │ │ └── try_test_is_move_assignable.part.hpp │ │ ├── is_move_constructible │ │ │ ├── is_move_constructible.intrin.part.hpp │ │ │ ├── is_move_constructible.isc.part.hpp │ │ │ ├── is_move_constructible.part.hpp │ │ │ ├── try_test_is_move_constructible.defi.part.hpp │ │ │ ├── try_test_is_move_constructible.guess.part.hpp │ │ │ └── try_test_is_move_constructible.part.hpp │ │ ├── is_nothrow_assignable │ │ │ ├── is_nothrow_assignable.intrin.part.hpp │ │ │ ├── is_nothrow_assignable.part.hpp │ │ │ ├── is_nothrow_assignable.traits11.part.hpp │ │ │ ├── try_test_is_nothrow_assignable.defi.part.hpp │ │ │ ├── try_test_is_nothrow_assignable.guess.part.hpp │ │ │ └── try_test_is_nothrow_assignable.part.hpp │ │ ├── is_nothrow_constructible │ │ │ ├── is_nothrow_constructible.intrin.part.hpp │ │ │ ├── is_nothrow_constructible.part.hpp │ │ │ ├── is_nothrow_constructible.traits11.part.hpp │ │ │ ├── try_test_is_nothrow_constructible.defi.part.hpp │ │ │ ├── try_test_is_nothrow_constructible.guess.part.hpp │ │ │ └── try_test_is_nothrow_constructible.part.hpp │ │ ├── is_nothrow_copy_assignable │ │ │ ├── is_nothrow_copy_assignable.intrin.part.hpp │ │ │ ├── is_nothrow_copy_assignable.isnta.part.hpp │ │ │ ├── is_nothrow_copy_assignable.part.hpp │ │ │ ├── try_test_is_nothrow_copy_assignable.defi.part.hpp │ │ │ ├── try_test_is_nothrow_copy_assignable.guess.part.hpp │ │ │ └── try_test_is_nothrow_copy_assignable.part.hpp │ │ ├── is_nothrow_copy_constructible │ │ │ ├── is_nothrow_copy_constructible.intrin.part.hpp │ │ │ ├── is_nothrow_copy_constructible.isntc.part.hpp │ │ │ ├── is_nothrow_copy_constructible.part.hpp │ │ │ ├── try_test_is_nothrow_copy_constructible.defi.part.hpp │ │ │ ├── try_test_is_nothrow_copy_constructible.guess.part.hpp │ │ │ └── try_test_is_nothrow_copy_constructible.part.hpp │ │ ├── is_nothrow_default_constructible │ │ │ ├── is_nothrow_default_constructible.intrin.part.hpp │ │ │ ├── is_nothrow_default_constructible.isntc.part.hpp │ │ │ ├── is_nothrow_default_constructible.part.hpp │ │ │ ├── try_test_is_nothrow_default_constructible.defi.part.hpp │ │ │ ├── try_test_is_nothrow_default_constructible.guess.part.hpp │ │ │ └── try_test_is_nothrow_default_constructible.part.hpp │ │ ├── is_nothrow_destructible │ │ │ ├── is_nothrow_destructible.intrin.part.hpp │ │ │ ├── is_nothrow_destructible.isdes.part.hpp │ │ │ ├── is_nothrow_destructible.part.hpp │ │ │ ├── try_test_is_nothrow_destructible.defi.part.hpp │ │ │ ├── try_test_is_nothrow_destructible.guess.part.hpp │ │ │ └── try_test_is_nothrow_destructible.part.hpp │ │ ├── is_nothrow_move_assignable │ │ │ ├── is_nothrow_move_assignable.intrin.part.hpp │ │ │ ├── is_nothrow_move_assignable.isnta.part.hpp │ │ │ ├── is_nothrow_move_assignable.part.hpp │ │ │ ├── try_test_is_nothrow_move_assignable.defi.part.hpp │ │ │ ├── try_test_is_nothrow_move_assignable.guess.part.hpp │ │ │ └── try_test_is_nothrow_move_assignable.part.hpp │ │ ├── is_nothrow_move_constructible │ │ │ ├── is_nothrow_move_constructible.intrin.part.hpp │ │ │ ├── is_nothrow_move_constructible.isntc.part.hpp │ │ │ ├── is_nothrow_move_constructible.part.hpp │ │ │ ├── try_test_is_nothrow_move_constructible.defi.part.hpp │ │ │ ├── try_test_is_nothrow_move_constructible.guess.part.hpp │ │ │ └── try_test_is_nothrow_move_constructible.part.hpp │ │ ├── is_rvalue_reference │ │ │ └── is_rvalue_reference.cxx11.part.hpp │ │ ├── is_scalar │ │ │ ├── is_scalar.intrin.part.hpp │ │ │ ├── is_scalar.is_enum.part.hpp │ │ │ ├── is_scalar.part.hpp │ │ │ ├── is_scalar.std.part.hpp │ │ │ ├── try_test_is_scalar.defi.part.hpp │ │ │ ├── try_test_is_scalar.guess.part.hpp │ │ │ └── try_test_is_scalar.part.hpp │ │ ├── is_standard_layout │ │ │ ├── is_standard_layout.intrin.part.hpp │ │ │ ├── is_standard_layout.part.hpp │ │ │ ├── is_standard_layout.std.part.hpp │ │ │ ├── try_test_is_standard_layout.defi.part.hpp │ │ │ ├── try_test_is_standard_layout.guess.part.hpp │ │ │ └── try_test_is_standard_layout.part.hpp │ │ ├── is_trivially_assignable │ │ │ ├── is_trivially_assignable.intrin.part.hpp │ │ │ ├── is_trivially_assignable.part.hpp │ │ │ ├── is_trivially_assignable.std.part.hpp │ │ │ ├── try_test_is_trivially_assignable.defi.part.hpp │ │ │ ├── try_test_is_trivially_assignable.guess.part.hpp │ │ │ └── try_test_is_trivially_assignable.part.hpp │ │ ├── is_trivially_constructible │ │ │ ├── is_trivially_constructible.intrin.part.hpp │ │ │ ├── is_trivially_constructible.part.hpp │ │ │ ├── is_trivially_constructible.std.part.hpp │ │ │ ├── try_test_is_trivially_constructible.defi.part.hpp │ │ │ ├── try_test_is_trivially_constructible.guess.part.hpp │ │ │ └── try_test_is_trivially_constructible.part.hpp │ │ ├── is_trivially_copy_assignable │ │ │ ├── is_trivially_copy_assignable.intrin.part.hpp │ │ │ ├── is_trivially_copy_assignable.istria.part.hpp │ │ │ ├── is_trivially_copy_assignable.part.hpp │ │ │ ├── is_trivially_copy_assignable.std.part.hpp │ │ │ ├── try_test_is_trivially_copy_assignable.defi.part.hpp │ │ │ ├── try_test_is_trivially_copy_assignable.guess.part.hpp │ │ │ └── try_test_is_trivially_copy_assignable.part.hpp │ │ ├── is_trivially_copy_constructible │ │ │ ├── is_trivially_copy_constructible.intrin.part.hpp │ │ │ ├── is_trivially_copy_constructible.istric.part.hpp │ │ │ ├── is_trivially_copy_constructible.part.hpp │ │ │ ├── is_trivially_copy_constructible.std.part.hpp │ │ │ ├── try_test_is_trivially_copy_constructible.defi.part.hpp │ │ │ ├── try_test_is_trivially_copy_constructible.guess.part.hpp │ │ │ └── try_test_is_trivially_copy_constructible.part.hpp │ │ ├── is_trivially_default_constructible │ │ │ ├── is_trivially_default_constructible.intrin.part.hpp │ │ │ ├── is_trivially_default_constructible.istric.part.hpp │ │ │ ├── is_trivially_default_constructible.part.hpp │ │ │ ├── is_trivially_default_constructible.std.part.hpp │ │ │ ├── try_test_is_trivially_default_constructible.defi.part.hpp │ │ │ ├── try_test_is_trivially_default_constructible.guess.part.hpp │ │ │ └── try_test_is_trivially_default_constructible.part.hpp │ │ ├── is_trivially_destructible │ │ │ ├── is_trivially_destructible.intrin.part.hpp │ │ │ ├── is_trivially_destructible.part.hpp │ │ │ ├── is_trivially_destructible.std.part.hpp │ │ │ ├── try_test_is_trivially_destructible.defi.part.hpp │ │ │ ├── try_test_is_trivially_destructible.guess.part.hpp │ │ │ └── try_test_is_trivially_destructible.part.hpp │ │ ├── is_trivially_move_assignable │ │ │ ├── is_trivially_move_assignable.intrin.part.hpp │ │ │ ├── is_trivially_move_assignable.istria.part.hpp │ │ │ ├── is_trivially_move_assignable.part.hpp │ │ │ ├── is_trivially_move_assignable.std.part.hpp │ │ │ ├── try_test_is_trivially_move_assignable.defi.part.hpp │ │ │ ├── try_test_is_trivially_move_assignable.guess.part.hpp │ │ │ └── try_test_is_trivially_move_assignable.part.hpp │ │ ├── is_trivially_move_constructible │ │ │ ├── is_trivially_move_constructible.intrin.part.hpp │ │ │ ├── is_trivially_move_constructible.istric.part.hpp │ │ │ ├── is_trivially_move_constructible.part.hpp │ │ │ ├── is_trivially_move_constructible.std.part.hpp │ │ │ ├── try_test_is_trivially_move_constructible.defi.part.hpp │ │ │ ├── try_test_is_trivially_move_constructible.guess.part.hpp │ │ │ └── try_test_is_trivially_move_constructible.part.hpp │ │ └── is_union │ │ │ ├── is_union.intrin.part.hpp │ │ │ ├── is_union.part.hpp │ │ │ ├── is_union.std.part.hpp │ │ │ ├── try_test_is_union.defi.part.hpp │ │ │ ├── try_test_is_union.guess.part.hpp │ │ │ └── try_test_is_union.part.hpp │ ├── enable_if.hpp │ ├── extent.hpp │ ├── integral_constant.hpp │ ├── is_abstract.hpp │ ├── is_arithmetic.hpp │ ├── is_array.hpp │ ├── is_assignable.hpp │ ├── is_base_of.hpp │ ├── is_bounded_array.hpp │ ├── is_class.hpp │ ├── is_compound.hpp │ ├── is_const.hpp │ ├── is_constructible.hpp │ ├── is_copy_assignable.hpp │ ├── is_copy_constructible.hpp │ ├── is_cv.hpp │ ├── is_default_constructible.hpp │ ├── is_destructible.hpp │ ├── is_empty.hpp │ ├── is_enum.hpp │ ├── is_final.hpp │ ├── is_floating_point.hpp │ ├── is_function.hpp │ ├── is_fundamental.hpp │ ├── is_integral.hpp │ ├── is_lvalue_reference.hpp │ ├── is_member_function_pointer.hpp │ ├── is_member_object_pointer.hpp │ ├── is_member_pointer.hpp │ ├── is_move_assignable.hpp │ ├── is_move_constructible.hpp │ ├── is_nothrow_assignable.hpp │ ├── is_nothrow_constructible.hpp │ ├── is_nothrow_copy_assignable.hpp │ ├── is_nothrow_copy_constructible.hpp │ ├── is_nothrow_default_constructible.hpp │ ├── is_nothrow_destructible.hpp │ ├── is_nothrow_move_assignable.hpp │ ├── is_nothrow_move_constructible.hpp │ ├── is_null_pointer.hpp │ ├── is_pointer.hpp │ ├── is_referencable.hpp │ ├── is_reference.hpp │ ├── is_rvalue_reference.hpp │ ├── is_same.hpp │ ├── is_scalar.hpp │ ├── is_standard_layout.hpp │ ├── is_trivially_assignable.hpp │ ├── is_trivially_constructible.hpp │ ├── is_trivially_copy_assignable.hpp │ ├── is_trivially_copy_constructible.hpp │ ├── is_trivially_copyable.hpp │ ├── is_trivially_default_constructible.hpp │ ├── is_trivially_destructible.hpp │ ├── is_trivially_move_assignable.hpp │ ├── is_trivially_move_constructible.hpp │ ├── is_unbounded_array.hpp │ ├── is_union.hpp │ ├── is_void.hpp │ ├── is_volatile.hpp │ ├── logical.hpp │ ├── pointer_rank.hpp │ ├── rank.hpp │ ├── remove_all_extents.hpp │ ├── remove_all_pointers.hpp │ ├── remove_const.hpp │ ├── remove_cv.hpp │ ├── remove_cvref.hpp │ ├── remove_extent.hpp │ ├── remove_pointer.hpp │ ├── remove_reference.hpp │ ├── remove_volatile.hpp │ ├── sign_deduction.hpp │ ├── size_compressed_type.hpp │ ├── tribool_constant.hpp │ ├── type_identity.hpp │ ├── void_type.hpp │ └── yes_no_type.hpp │ └── utility │ ├── addressof.hpp │ ├── as_const.hpp │ ├── compressed_pair.hpp │ ├── compressed_pair │ └── compressed_pair.fwd.hpp │ ├── costream.hpp │ ├── declval.hpp │ ├── forward.hpp │ ├── forward │ └── detail │ │ └── forward.cxx11.part.hpp │ ├── ignore_unused.hpp │ ├── in_place.hpp │ ├── integer_sequence.hpp │ ├── integer_sequence │ └── detail │ │ ├── cxx11 │ │ ├── index_sequence.part.hpp │ │ ├── integer_sequence.part.hpp │ │ ├── make_index_sequence.part.hpp │ │ ├── make_integer_sequence.part.hpp │ │ └── make_integer_sequence │ │ │ ├── make_integer_sequence.default.part.hpp │ │ │ ├── make_integer_sequence.integer_pack.part.hpp │ │ │ └── make_integer_sequence.make_integer_seq.part.hpp │ │ └── integer_sequence.cxx11.part.hpp │ ├── member_compress_helper.hpp │ ├── member_compress_helper │ ├── detail │ │ ├── member_compress_helper │ │ │ ├── member_compress_helper.array.part.hpp │ │ │ ├── member_compress_helper.default.part.hpp │ │ │ └── member_compress_helper.ref.part.hpp │ │ ├── member_compress_helper_impl.fwd.hpp │ │ ├── member_compress_helper_impl.hpp │ │ └── member_compress_helper_impl │ │ │ ├── member_compress_helper_impl.compressed.part.hpp │ │ │ ├── member_compress_helper_impl.const.part.hpp │ │ │ └── member_compress_helper_impl.not_compressed.part.hpp │ └── member_compress_helper.fwd.hpp │ ├── noncopyable.hpp │ ├── piecewise_construct.hpp │ ├── reference_wrapper.hpp │ ├── static_block.hpp │ ├── std_pair │ └── std_pair.fwd.hpp │ ├── std_tuple │ └── std_tuple.fwd.hpp │ ├── storage.hpp │ ├── storage │ └── detail │ │ └── storage.cxx11.part.hpp │ ├── throw_this_exception.hpp │ ├── tuple.hpp │ └── tuple │ ├── detail │ ├── tuple.cxx11.part.hpp │ └── tuple.cxx98.part.hpp │ └── tuple.fwd.hpp ├── kerbal.clang-format ├── kerbal.format.xml ├── readme.md └── readme.zh.md /.github/workflows/KerbalBuildTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/.github/workflows/KerbalBuildTest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build*/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/LICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2025.11.1 -------------------------------------------------------------------------------- /cmake/Modules/aux_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/Modules/aux_headers.cmake -------------------------------------------------------------------------------- /cmake/Modules/coroutine.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/Modules/coroutine.cmake -------------------------------------------------------------------------------- /cmake/Modules/instruction_extensions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/Modules/instruction_extensions.cmake -------------------------------------------------------------------------------- /cmake/Modules/list_ext.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/Modules/list_ext.cmake -------------------------------------------------------------------------------- /cmake/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/config.cmake.in -------------------------------------------------------------------------------- /cmake/cpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/cpack.cmake -------------------------------------------------------------------------------- /cmake/cpack/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/cpack/config.cmake -------------------------------------------------------------------------------- /cmake/cpack/config/wix_patch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/cpack/config/wix_patch.cmake -------------------------------------------------------------------------------- /cmake/cpack/mypack_nuget/Kerbal.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/cpack/mypack_nuget/Kerbal.nuspec -------------------------------------------------------------------------------- /cmake/cpack/mypack_nuget/build/Kerbal.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/cpack/mypack_nuget/build/Kerbal.targets -------------------------------------------------------------------------------- /cmake/gnuInstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/gnuInstall.cmake -------------------------------------------------------------------------------- /cmake/header_integration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/header_integration.cmake -------------------------------------------------------------------------------- /cmake/modules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/modules.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/binary_search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/binary_search.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/binary_search_hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/binary_search_hint.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/equal_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/equal_range.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/lower_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/lower_bound.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/lower_bound_backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/lower_bound_backward.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/lower_bound_hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/lower_bound_hint.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/upper_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/upper_bound.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/upper_bound_backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/upper_bound_backward.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/binary_search/upper_bound_hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/binary_search/upper_bound_hint.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/dynamic_programming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/dynamic_programming.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/heap.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/kmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/kmp.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/copy.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/copy_backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/copy_backward.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/copy_backward_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/copy_backward_if.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/copy_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/copy_if.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/copy_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/copy_n.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/detail/copy_n/basic_copy_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/detail/copy_n/basic_copy_n.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/fill.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/inplace_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/inplace_merge.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/iota.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/iota.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/merge.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/move.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/move_backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/move_backward.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/replace.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/replace_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/replace_if.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/reverse.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/reverse_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/reverse_copy.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/rotate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/rotate.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/rotate_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/rotate_copy.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/transform.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/modifier/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/modifier/unique.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/partition.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/adjacent_find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/adjacent_find.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/all_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/all_of.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/any_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/any_of.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/count.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/count_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/count_if.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/find.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/find_first_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/find_first_of.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/find_if.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/find_if_not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/find_if_not.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/for_each.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/none_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/none_of.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/querier/rfor_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/querier/rfor_each.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/set/includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/set/includes.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/set/set_difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/set/set_difference.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/set/set_intersection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/set/set_intersection.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/set/set_symmetric_difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/set/set_symmetric_difference.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/set/set_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/set/set_union.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/bubble_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/bubble_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/detail/actual_bit_width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/detail/actual_bit_width.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/detail/merge_sort_merge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/detail/merge_sort_merge.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/detail/quick_sort_pivot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/detail/quick_sort_pivot.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/heap_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/heap_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/inplace_merge_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/inplace_merge_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/insertion_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/insertion_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/intro_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/intro_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/is_sorted.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/merge_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/merge_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/pigeonhole_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/pigeonhole_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/quick_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/quick_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/radix_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/radix_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/selection_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/selection_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/shell_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/shell_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/sort/stable_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/sort/stable_sort.hpp -------------------------------------------------------------------------------- /include/kerbal/algorithm/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/algorithm/swap.hpp -------------------------------------------------------------------------------- /include/kerbal/any/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/any/any.hpp -------------------------------------------------------------------------------- /include/kerbal/any/any/any.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/any/any/any.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/any/bad_any_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/any/bad_any_cast.hpp -------------------------------------------------------------------------------- /include/kerbal/assign/assign_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/assign/assign_list.hpp -------------------------------------------------------------------------------- /include/kerbal/assign/assign_list/assign_list.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/assign/assign_list/assign_list.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/assign/generic_assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/assign/generic_assign.hpp -------------------------------------------------------------------------------- /include/kerbal/assign/generic_assign/generic_assign.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/assign/generic_assign/generic_assign.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/assign/ilist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/assign/ilist.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/forward_list.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/forward_list/forward_list.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/forward_list/forward_list.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/list.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/list/list.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/list/list.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/semi_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/semi_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/semi_allocator/default_delete_semi_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/semi_allocator/default_delete_semi_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/semi_allocator/discard_deallocate_semi_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/semi_allocator/discard_deallocate_semi_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/autonm/semi_allocator/semi_allocator_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/autonm/semi_allocator/semi_allocator_base.hpp -------------------------------------------------------------------------------- /include/kerbal/bitset/detail/bitset_size_unrelated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/bitset/detail/bitset_size_unrelated.hpp -------------------------------------------------------------------------------- /include/kerbal/bitset/detail/default_block_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/bitset/detail/default_block_type.hpp -------------------------------------------------------------------------------- /include/kerbal/bitset/static_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/bitset/static_bitset.hpp -------------------------------------------------------------------------------- /include/kerbal/bitset/static_bitset/static_bitset.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/bitset/static_bitset/static_bitset.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/compare/basic_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compare/basic_compare.hpp -------------------------------------------------------------------------------- /include/kerbal/compare/binary_type_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compare/binary_type_compare.hpp -------------------------------------------------------------------------------- /include/kerbal/compare/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compare/minmax.hpp -------------------------------------------------------------------------------- /include/kerbal/compare/minmax_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compare/minmax_element.hpp -------------------------------------------------------------------------------- /include/kerbal/compare/sequence_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compare/sequence_compare.hpp -------------------------------------------------------------------------------- /include/kerbal/compare/sequence_compare/sequence_compare.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compare/sequence_compare/sequence_compare.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/compare/std_compare/std_compare.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compare/std_compare/std_compare.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/alignas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/alignas.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/alignof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/alignof.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/attribute_unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/attribute_unused.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/chrono_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/chrono_suffix.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/chrono_suffix/detail/chrono_suffix.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/chrono_suffix/detail/chrono_suffix.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/constexpr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/constexpr.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/cv_qualified_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/cv_qualified_function.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/fixed_width_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/fixed_width_integer.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/is_constant_evaluated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/is_constant_evaluated.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/method_overload_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/method_overload_tag.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/move.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/namespace_std_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/namespace_std_scope.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/noexcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/noexcept.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/static_assert.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/tick_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/tick_count.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/tick_count/detail/tick_count.unix.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/tick_count/detail/tick_count.unix.part.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/tick_count/detail/tick_count.wasm.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/tick_count/detail/tick_count.wasm.part.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/tick_count/detail/tick_count.win.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/tick_count/detail/tick_count.win.part.hpp -------------------------------------------------------------------------------- /include/kerbal/compatibility/unreachable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/compatibility/unreachable.hpp -------------------------------------------------------------------------------- /include/kerbal/config/architecture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/architecture.hpp -------------------------------------------------------------------------------- /include/kerbal/config/compiler_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/compiler_id.hpp -------------------------------------------------------------------------------- /include/kerbal/config/compiler_private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/compiler_private.hpp -------------------------------------------------------------------------------- /include/kerbal/config/cxx_stdlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/cxx_stdlib.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/architecture/_0_x86.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/architecture/_0_x86.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/architecture/_1_amd64.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/architecture/_1_amd64.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/architecture/_2_arm.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/architecture/_2_arm.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/architecture/_3_aarch64.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/architecture/_3_aarch64.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/architecture/_4_wasm.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/architecture/_4_wasm.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/architecture/_5_riscv.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/architecture/_5_riscv.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/architecture/_6_loongarch64.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/architecture/_6_loongarch64.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_id/_0_gnu.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_id/_0_gnu.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_id/_1_clang.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_id/_1_clang.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_id/_2_msvc.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_id/_2_msvc.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_id/_3_icc.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_id/_3_icc.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_private/_0_gnu.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_private/_0_gnu.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_private/_1_clang.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_private/_1_clang.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_private/_2_msvc.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_private/_2_msvc.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/compiler_private/_3_icc.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/compiler_private/_3_icc.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/cxx_stdlib/_0_libstdcxx.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/cxx_stdlib/_0_libstdcxx.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/cxx_stdlib/_1_libcxx.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/cxx_stdlib/_1_libcxx.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/cxx_stdlib/_2_msvc.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/cxx_stdlib/_2_msvc.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/system/_0_freestanding.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/system/_0_freestanding.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/system/_1_windows.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/system/_1_windows.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/system/_2_linux.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/system/_2_linux.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/system/_3_apple.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/system/_3_apple.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/system/_4_android.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/system/_4_android.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/system/_5_wasm.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/system/_5_wasm.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/detail/unexpected_compiler_error.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/detail/unexpected_compiler_error.part.hpp -------------------------------------------------------------------------------- /include/kerbal/config/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/exceptions.hpp -------------------------------------------------------------------------------- /include/kerbal/config/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/config/system.hpp -------------------------------------------------------------------------------- /include/kerbal/container/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/array.hpp -------------------------------------------------------------------------------- /include/kerbal/container/array/array.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/array/array.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/array/array.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/array/array.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/array/array.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/array/array.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/associative_container_facility/associative_unique_insert_r.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/associative_container_facility/associative_unique_insert_r.hpp -------------------------------------------------------------------------------- /include/kerbal/container/associative_container_facility/key_compare_is_transparent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/associative_container_facility/key_compare_is_transparent.hpp -------------------------------------------------------------------------------- /include/kerbal/container/associative_container_facility/map_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/associative_container_facility/map_data.hpp -------------------------------------------------------------------------------- /include/kerbal/container/associative_container_facility/unique_tag_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/associative_container_facility/unique_tag_t.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_map.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_map/avl_map.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_map/avl_map.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_map/avl_map.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_map/avl_map.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_map/avl_map.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_map/avl_map.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multimap.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multimap/avl_multimap.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multimap/avl_multimap.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multimap/avl_multimap.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multimap/avl_multimap.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multimap/avl_multimap.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multimap/avl_multimap.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multiset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multiset.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multiset/avl_multiset.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multiset/avl_multiset.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multiset/avl_multiset.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multiset/avl_multiset.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_multiset/avl_multiset.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_multiset/avl_multiset.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_ordered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_ordered.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_ordered/avl_ordered.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_ordered/avl_ordered.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_ordered/avl_ordered.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_ordered/avl_ordered.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_ordered/avl_ordered.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_ordered/avl_ordered.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_set.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_set/avl_set.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_set/avl_set.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_set/avl_set.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_set/avl_set.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/avl_set/avl_set.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/avl_set/avl_set.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/array_base/array_base.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/array_base/array_base.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/array_base/array_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/array_base/array_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/avl_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/avl_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/avl_base/avl_base.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/avl_base/avl_base.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/avl_base/avl_base.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/avl_base/avl_base.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/avl_base/avl_base.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/avl_base/avl_base.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/avl_base/avl_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/avl_base/avl_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/avl_base/avl_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/avl_base/avl_node.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/container_allocator_overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/container_allocator_overload.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/container_rebind_allocator_overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/container_rebind_allocator_overload.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/flat_map_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/flat_map_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/flat_map_common_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/flat_map_common_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/flat_multimap_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/flat_multimap_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/flat_multiset_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/flat_multiset_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/flat_ordered_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/flat_ordered_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/flat_set_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/flat_set_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/flat_set_common_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/flat_set_common_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/forward_list_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/forward_list_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/forward_list_base/forward_list_base.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/forward_list_base/forward_list_base.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/forward_list_base/forward_list_base.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/forward_list_base/forward_list_base.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/forward_list_base/forward_list_base.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/forward_list_base/forward_list_base.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/forward_list_base/forward_list_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/forward_list_base/forward_list_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/list_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/list_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/list_base/list_base.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/list_base/list_base.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/list_base/list_base.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/list_base/list_base.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/list_base/list_base.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/list_base/list_base.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/list_base/list_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/list_base/list_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/list_base/list_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/list_base/list_node.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/single_list_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/single_list_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/single_list_base/single_list_base.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/single_list_base/single_list_base.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/single_list_base/single_list_base.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/single_list_base/single_list_base.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/single_list_base/single_list_base.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/single_list_base/single_list_base.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/single_list_base/single_list_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/single_list_base/single_list_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/single_list_base/single_list_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/single_list_base/single_list_node.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/static_queue_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/static_queue_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/static_vector_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/static_vector_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/static_vector_base/static_vector_base.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/static_vector_base/static_vector_base.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/static_vector_base/static_vector_base.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/static_vector_base/static_vector_base.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/static_vector_base/static_vector_base.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/static_vector_base/static_vector_base.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/static_vector_base/static_vector_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/static_vector_base/static_vector_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/vector_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/vector_base.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/vector_base/vector_base.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/vector_base/vector_base.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/vector_base/vector_base.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/vector_base/vector_base.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/vector_base/vector_base.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/vector_base/vector_base.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/detail/vector_base/vector_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/detail/vector_base/vector_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_map.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_map/flat_map.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_map/flat_map.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_map/flat_map.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_map/flat_map.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_map/flat_map.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_map/flat_map.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multimap.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multimap/flat_multimap.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multimap/flat_multimap.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multimap/flat_multimap.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multimap/flat_multimap.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multimap/flat_multimap.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multimap/flat_multimap.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multiset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multiset.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multiset/flat_multiset.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multiset/flat_multiset.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multiset/flat_multiset.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multiset/flat_multiset.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_multiset/flat_multiset.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_multiset/flat_multiset.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_ordered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_ordered.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_ordered/flat_ordered.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_ordered/flat_ordered.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_ordered/flat_ordered.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_ordered/flat_ordered.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_ordered/flat_ordered.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_ordered/flat_ordered.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_set.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_set/flat_set.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_set/flat_set.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_set/flat_set.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_set/flat_set.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/flat_set/flat_set.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/flat_set/flat_set.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/forward_list.hpp -------------------------------------------------------------------------------- /include/kerbal/container/forward_list/forward_list.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/forward_list/forward_list.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/forward_list/forward_list.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/forward_list/forward_list.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/forward_list/forward_list.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/forward_list/forward_list.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/linked_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/linked_queue.hpp -------------------------------------------------------------------------------- /include/kerbal/container/linked_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/linked_stack.hpp -------------------------------------------------------------------------------- /include/kerbal/container/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/list.hpp -------------------------------------------------------------------------------- /include/kerbal/container/list/list.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/list/list.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/list/list.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/list/list.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/list/list.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/list/list.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/nonmember_container_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/nonmember_container_access.hpp -------------------------------------------------------------------------------- /include/kerbal/container/priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/priority_queue.hpp -------------------------------------------------------------------------------- /include/kerbal/container/single_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/single_list.hpp -------------------------------------------------------------------------------- /include/kerbal/container/single_list/single_list.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/single_list/single_list.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/single_list/single_list.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/single_list/single_list.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/single_list/single_list.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/single_list/single_list.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_container_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_container_exception.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_map.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_map/static_flat_map.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_map/static_flat_map.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_map/static_flat_map.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_map/static_flat_map.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_map/static_flat_map.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_map/static_flat_map.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multimap.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multimap/static_flat_multimap.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multimap/static_flat_multimap.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multimap/static_flat_multimap.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multimap/static_flat_multimap.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multimap/static_flat_multimap.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multimap/static_flat_multimap.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multiset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multiset.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multiset/static_flat_multiset.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multiset/static_flat_multiset.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multiset/static_flat_multiset.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multiset/static_flat_multiset.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_multiset/static_flat_multiset.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_multiset/static_flat_multiset.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_set.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_set/static_flat_set.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_set/static_flat_set.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_set/static_flat_set.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_set/static_flat_set.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_flat_set/static_flat_set.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_flat_set/static_flat_set.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_ordered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_ordered.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_ordered/static_ordered.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_ordered/static_ordered.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_ordered/static_ordered.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_ordered/static_ordered.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_ordered/static_ordered.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_ordered/static_ordered.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_priority_queue.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_queue.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_stack.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_vector.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_vector/static_vector.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_vector/static_vector.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_vector/static_vector.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_vector/static_vector.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/static_vector/static_vector.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/static_vector/static_vector.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/vector.hpp -------------------------------------------------------------------------------- /include/kerbal/container/vector/vector.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/vector/vector.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/container/vector/vector.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/vector/vector.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/container/vector/vector.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/container/vector/vector.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/config.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/detail/exp_compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/detail/exp_compat.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/done_coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/done_coroutine.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator/bad_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator/bad_generator.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator/detail/generator_iterator.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator/detail/generator_iterator.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator/detail/generator_iterator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator/detail/generator_iterator.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator/detail/generator_promise_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator/detail/generator_promise_base.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator/generator.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator/generator.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator/generator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator/generator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/coroutine/generator/generator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/coroutine/generator/generator.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/function/bad_function_call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/bad_function_call.hpp -------------------------------------------------------------------------------- /include/kerbal/function/bad_function_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/bad_function_cast.hpp -------------------------------------------------------------------------------- /include/kerbal/function/detail/is_function_embedded_stored_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/detail/is_function_embedded_stored_type.hpp -------------------------------------------------------------------------------- /include/kerbal/function/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/function.hpp -------------------------------------------------------------------------------- /include/kerbal/function/function/detail/function.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/function/detail/function.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/function/function.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/function/function.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/function/function_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/function_traits.hpp -------------------------------------------------------------------------------- /include/kerbal/function/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/identity.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_is_nothrow.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_is_nothrow.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_overload_ver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_overload_ver.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_overload_ver_selector.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_overload_ver_selector.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_overload_ver_selector.cxx98.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_overload_ver_selector.cxx98.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_r.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_r.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_r.cxx98.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_r.cxx98.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_r_is_nothrow.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_r_is_nothrow.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/detail/invoke_result.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/detail/invoke_result.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/invoke_is_nothrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/invoke_is_nothrow.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/invoke_overload_ver_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/invoke_overload_ver_selector.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/invoke_r_is_nothrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/invoke_r_is_nothrow.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke/invoke_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke/invoke_result.hpp -------------------------------------------------------------------------------- /include/kerbal/function/invoke_r.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/invoke_r.hpp -------------------------------------------------------------------------------- /include/kerbal/function/move_only_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/move_only_function.hpp -------------------------------------------------------------------------------- /include/kerbal/function/move_only_function/detail/move_only_function.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/move_only_function/detail/move_only_function.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/function/move_only_function/move_only_function.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/function/move_only_function/move_only_function.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/detail/char4tolong1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/detail/char4tolong1.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/hash.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/murmur_hash2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/murmur_hash2.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/sha1.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/sha1/detail/sha1_context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/sha1/detail/sha1_context_base.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/sha1/detail/sha1_transform_overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/sha1/detail/sha1_transform_overload.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/sha1/sha1.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/sha1/sha1.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/sha1/sha1.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/sha1/sha1.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/sha1/sha1.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/sha1/sha1.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/hash/sha1/sha1_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/hash/sha1/sha1_result.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/concept_constraint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/concept_constraint.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/general_back_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/general_back_inserter.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/iterator_traits.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/move_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/move_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/move_iterator/detail/move_iterator.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/move_iterator/detail/move_iterator.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/reverse_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/stride_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/stride_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/transform_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/transform_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/transform_iterator/transform_iterator.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/transform_iterator/transform_iterator.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/transform_iterator/transform_iterator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/transform_iterator/transform_iterator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/iterator/transform_iterator/transform_iterator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/iterator/transform_iterator/transform_iterator.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/macro/join_line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/macro/join_line.hpp -------------------------------------------------------------------------------- /include/kerbal/macro/macro_concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/macro/macro_concat.hpp -------------------------------------------------------------------------------- /include/kerbal/macro/ppexpand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/macro/ppexpand.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/default_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/default_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/default_allocator/default_allocator.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/default_allocator/default_allocator.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/default_allocator/default_allocator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/default_allocator/default_allocator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/default_allocator/default_allocator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/default_allocator/default_allocator.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/fixed_size_node_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/fixed_size_node_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/is_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/is_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/malloc_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/malloc_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/malloc_allocator/malloc_allocator.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/malloc_allocator/malloc_allocator.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/malloc_allocator/malloc_allocator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/malloc_allocator/malloc_allocator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/malloc_allocator/malloc_allocator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/malloc_allocator/malloc_allocator.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/monotonic_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/monotonic_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/monotonic_allocator/monotonic_allocator.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/monotonic_allocator/monotonic_allocator.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/monotonic_allocator/monotonic_allocator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/monotonic_allocator/monotonic_allocator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/monotonic_allocator/monotonic_allocator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/monotonic_allocator/monotonic_allocator.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/over_aligned_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/over_aligned_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/over_aligned_allocator/over_aligned_allocator.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/over_aligned_allocator/over_aligned_allocator.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/over_aligned_allocator/over_aligned_allocator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/over_aligned_allocator/over_aligned_allocator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/over_aligned_allocator/over_aligned_allocator.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/over_aligned_allocator/over_aligned_allocator.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/reallocable_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/reallocable_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/std_allocator/std_allocator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/std_allocator/std_allocator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator/std_pmr_allocator/std_pmr_allocator.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator/std_pmr_allocator/std_pmr_allocator.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/allocate_one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/allocate_one.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/allow_deallocate_null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/allow_deallocate_null.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/const_pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/const_pointer_type.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/const_void_pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/const_void_pointer_type.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/construct.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/deallocate_one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/deallocate_one.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/destroy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/destroy.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/difference_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/difference_type.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/is_always_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/is_always_equal.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/max_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/max_size.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/minimum_alignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/minimum_alignment.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/pointer_type.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/propagate_on_container_copy_assignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/propagate_on_container_copy_assignment.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/propagate_on_container_move_assignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/propagate_on_container_move_assignment.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/propagate_on_container_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/propagate_on_container_swap.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/reallocate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/reallocate.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/rebind_alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/rebind_alloc.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/size_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/size_type.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/allocator_traits/void_pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/allocator_traits/void_pointer_type.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/any_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/any_storage.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/bad_alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/bad_alloc.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/bad_array_new_length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/bad_array_new_length.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/basic_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/basic_t.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/default_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/default_delete.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/detail/can_be_nothrow_advance_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/detail/can_be_nothrow_advance_iterator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/detail/can_be_trivially_destroy_ua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/detail/can_be_trivially_destroy_ua.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/detail/raw_storage/raw_storage_base.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/detail/raw_storage/raw_storage_base.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/detail/raw_storage/raw_storage_base.cxx98.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/detail/raw_storage/raw_storage_base.cxx98.part.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/guard.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/new/basic_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/new/basic_new.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/new/nothrow_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/new/nothrow_new.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/new/over_aligned_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/new/over_aligned_new.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/nothrow_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/nothrow_t.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/pointer_alignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/pointer_alignment.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/pointer_traits.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/raw_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/raw_storage.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/raw_storage_uninitialized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/raw_storage_uninitialized.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/raw_storage_uninitialized/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/raw_storage_uninitialized/construct.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/raw_storage_uninitialized/destroy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/raw_storage_uninitialized/destroy.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/uninitialized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/uninitialized.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/uninitialized/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/uninitialized/construct.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/uninitialized/default_construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/uninitialized/default_construct.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/uninitialized/destroy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/uninitialized/destroy.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/uninitialized_using_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/uninitialized_using_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/uninitialized_using_allocator/construct_using_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/uninitialized_using_allocator/construct_using_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/uninitialized_using_allocator/destroy_using_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/uninitialized_using_allocator/destroy_using_allocator.hpp -------------------------------------------------------------------------------- /include/kerbal/memory/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/memory/unique_ptr.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/countl_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/countl_zero.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/countr_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/countr_zero.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/detail/countl_zero/countl_zero.gnu_builtin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/detail/countl_zero/countl_zero.gnu_builtin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/detail/countl_zero/countl_zero.plain.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/detail/countl_zero/countl_zero.plain.part.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/detail/countr_zero/countr_zero.bsearch.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/detail/countr_zero/countr_zero.bsearch.part.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/detail/countr_zero/countr_zero.gnu_builtin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/detail/countr_zero/countr_zero.gnu_builtin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/detail/countr_zero/countr_zero.plain.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/detail/countr_zero/countr_zero.plain.part.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/popcount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/popcount.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/bit/single_bit_bsearch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/bit/single_bit_bsearch.hpp -------------------------------------------------------------------------------- /include/kerbal/numeric/numeric_limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/numeric/numeric_limits.hpp -------------------------------------------------------------------------------- /include/kerbal/openmp/disable_warning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/openmp/disable_warning.hpp -------------------------------------------------------------------------------- /include/kerbal/openmp/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/openmp/mutex.hpp -------------------------------------------------------------------------------- /include/kerbal/operators/addable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/operators/addable.hpp -------------------------------------------------------------------------------- /include/kerbal/operators/dereferenceable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/operators/dereferenceable.hpp -------------------------------------------------------------------------------- /include/kerbal/operators/equality_comparable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/operators/equality_comparable.hpp -------------------------------------------------------------------------------- /include/kerbal/operators/incr_decr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/operators/incr_decr.hpp -------------------------------------------------------------------------------- /include/kerbal/operators/less_than_comparable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/operators/less_than_comparable.hpp -------------------------------------------------------------------------------- /include/kerbal/operators/subtractable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/operators/subtractable.hpp -------------------------------------------------------------------------------- /include/kerbal/optional/bad_optional_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/optional/bad_optional_access.hpp -------------------------------------------------------------------------------- /include/kerbal/optional/is_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/optional/is_optional.hpp -------------------------------------------------------------------------------- /include/kerbal/optional/nullopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/optional/nullopt.hpp -------------------------------------------------------------------------------- /include/kerbal/optional/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/optional/optional.hpp -------------------------------------------------------------------------------- /include/kerbal/optional/optional/detail/optional_compare.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/optional/optional/detail/optional_compare.part.hpp -------------------------------------------------------------------------------- /include/kerbal/optional/optional/detail/optional_hash_template.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/optional/optional/detail/optional_hash_template.part.hpp -------------------------------------------------------------------------------- /include/kerbal/optional/optional/optional.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/optional/optional/optional.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/detail/thread.common.decl.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/detail/thread.common.decl.part.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/detail/thread.common.fwd.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/detail/thread.common.fwd.part.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/detail/thread.common.impl.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/detail/thread.common.impl.part.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/detail/thread.posix.decl.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/detail/thread.posix.decl.part.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/detail/thread.posix.impl.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/detail/thread.posix.impl.part.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/detail/thread.win.decl.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/detail/thread.win.decl.part.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/detail/thread.win.impl.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/detail/thread.win.impl.part.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/thread.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/thread.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/thread.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/thread.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread/thread.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread/thread.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread_create_failed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread_create_failed.hpp -------------------------------------------------------------------------------- /include/kerbal/parallel/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/parallel/thread_pool.hpp -------------------------------------------------------------------------------- /include/kerbal/random/distribution/bernoulli_distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/distribution/bernoulli_distribution.hpp -------------------------------------------------------------------------------- /include/kerbal/random/distribution/binomial_distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/distribution/binomial_distribution.hpp -------------------------------------------------------------------------------- /include/kerbal/random/distribution/exponential_distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/distribution/exponential_distribution.hpp -------------------------------------------------------------------------------- /include/kerbal/random/distribution/geometric_distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/distribution/geometric_distribution.hpp -------------------------------------------------------------------------------- /include/kerbal/random/distribution/normal_distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/distribution/normal_distribution.hpp -------------------------------------------------------------------------------- /include/kerbal/random/distribution/poisson_distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/distribution/poisson_distribution.hpp -------------------------------------------------------------------------------- /include/kerbal/random/distribution/uniform_real_distribution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/distribution/uniform_real_distribution.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/hardware_engine/hardware_engine_uint16_t.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/hardware_engine/hardware_engine_uint16_t.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/hardware_engine/hardware_engine_uint32_t.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/hardware_engine/hardware_engine_uint32_t.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/hardware_engine/hardware_engine_uint64_t.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/hardware_engine/hardware_engine_uint64_t.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.avx2.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.avx2.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.neon.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.neon.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.sse2.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.sse2.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.sve.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_generate_copy_n/mt_generate_copy_n.sve.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_generate_copy_n_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_generate_copy_n_helper.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist/mt_twist.avx2.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist/mt_twist.avx2.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist/mt_twist.avx512f.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist/mt_twist.avx512f.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist/mt_twist.neon.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist/mt_twist.neon.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist/mt_twist.plain.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist/mt_twist.plain.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist/mt_twist.sse2.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist/mt_twist.sse2.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist/mt_twist.sse41.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist/mt_twist.sse41.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist/mt_twist.sve.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist/mt_twist.sve.part.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/detail/mt_twist_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/detail/mt_twist_helper.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/discard_block_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/discard_block_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/hardware_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/hardware_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/hardware_engine/hardware_engine.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/hardware_engine/hardware_engine.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/hardware_engine/hardware_engine_failure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/hardware_engine/hardware_engine_failure.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/istream_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/istream_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/knuth_b_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/knuth_b_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/linear_congruential_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/linear_congruential_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/mersenne_twister_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/mersenne_twister_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/shuffle_order_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/shuffle_order_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/engine/subtract_with_carry_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/engine/subtract_with_carry_engine.hpp -------------------------------------------------------------------------------- /include/kerbal/random/noise/perlin_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/random/noise/perlin_noise.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/add_mod_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/add_mod_sm.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/countr_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/countr_zero.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/detail/is_never_overflow_for_mul_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/detail/is_never_overflow_for_mul_mod.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/has_single_bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/has_single_bit.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/max_sa_sb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/max_sa_sb.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/multiply_mod_a_b_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/multiply_mod_a_b_sm.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/multiply_mod_sa_b_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/multiply_mod_sa_b_sm.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/multiply_mod_sa_sb_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/multiply_mod_sa_sb_sm.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/pow_mod_sa_n_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/pow_mod_sa_n_sm.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/pow_mod_sa_sn_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/pow_mod_sa_sn_sm.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/repeat_byte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/repeat_byte.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/sigma_pow_mod_sa_n_sm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/sigma_pow_mod_sa_n_sm.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/two_pow_sn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/two_pow_sn.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/two_pow_sn_minus_one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/two_pow_sn_minus_one.hpp -------------------------------------------------------------------------------- /include/kerbal/smath/xmod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/smath/xmod.hpp -------------------------------------------------------------------------------- /include/kerbal/test/object_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/test/object_count.hpp -------------------------------------------------------------------------------- /include/kerbal/test/runtime_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/test/runtime_timer.hpp -------------------------------------------------------------------------------- /include/kerbal/test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/test/test.hpp -------------------------------------------------------------------------------- /include/kerbal/test/test_case.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/test/test_case.hpp -------------------------------------------------------------------------------- /include/kerbal/test/test_case/test_case.decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/test/test_case/test_case.decl.hpp -------------------------------------------------------------------------------- /include/kerbal/test/test_case/test_case.impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/test/test_case/test_case.impl.hpp -------------------------------------------------------------------------------- /include/kerbal/tmp/tppter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/tmp/tppter.hpp -------------------------------------------------------------------------------- /include/kerbal/tmp/type_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/tmp/type_vector.hpp -------------------------------------------------------------------------------- /include/kerbal/ts/modules_ts/modules_ts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/ts/modules_ts/modules_ts.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_const.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_const_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_const_lvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_const_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_const_rvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_cv.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_lvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_pointer.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_rvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/add_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/add_volatile.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/aligned_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/aligned_storage.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/can_be_empty_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/can_be_empty_base.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/conditional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/conditional.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/copy_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/copy_const.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/copy_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/copy_cv.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/copy_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/copy_lvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/copy_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/copy_rvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/copy_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/copy_volatile.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/decay.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/compiler_intrinsics/compiler_intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/compiler_intrinsics/compiler_intrinsics.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/compiler_intrinsics/part/_0_gnu.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/compiler_intrinsics/part/_0_gnu.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/compiler_intrinsics/part/_1_clang.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/compiler_intrinsics/part/_1_clang.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/compiler_intrinsics/part/_2_msvc.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/compiler_intrinsics/part/_2_msvc.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/compiler_intrinsics/part/_3_icc.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/compiler_intrinsics/part/_3_icc.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_abstract/is_abstract.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_abstract/is_abstract.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_abstract/is_abstract.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_abstract/is_abstract.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_abstract/is_abstract.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_abstract/is_abstract.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_abstract/try_test_is_abstract.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_abstract/try_test_is_abstract.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_abstract/try_test_is_abstract.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_abstract/try_test_is_abstract.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_abstract/try_test_is_abstract.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_abstract/try_test_is_abstract.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_assignable/is_assignable.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_assignable/is_assignable.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_assignable/is_assignable.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_assignable/is_assignable.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_assignable/is_assignable.sfinae.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_assignable/is_assignable.sfinae.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_assignable/is_assignable.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_assignable/is_assignable.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_assignable/try_test_is_assignable.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_assignable/try_test_is_assignable.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_assignable/try_test_is_assignable.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_assignable/try_test_is_assignable.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_assignable/try_test_is_assignable.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_assignable/try_test_is_assignable.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_base_of/is_base_of.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_base_of/is_base_of.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_base_of/is_base_of.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_base_of/is_base_of.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_base_of/is_base_of.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_base_of/is_base_of.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_base_of/try_test_is_base_of.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_base_of/try_test_is_base_of.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_base_of/try_test_is_base_of.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_base_of/try_test_is_base_of.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_base_of/try_test_is_base_of.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_base_of/try_test_is_base_of.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_class/is_class.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_class/is_class.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_class/is_class.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_class/is_class.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_class/is_class.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_class/is_class.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_class/try_test_is_class.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_class/try_test_is_class.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_class/try_test_is_class.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_class/try_test_is_class.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_class/try_test_is_class.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_class/try_test_is_class.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_constructible/is_constructible.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_constructible/is_constructible.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_constructible/is_constructible.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_constructible/is_constructible.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_constructible/is_constructible.sfinae11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_constructible/is_constructible.sfinae11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_constructible/is_constructible.sfinae98.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_constructible/is_constructible.sfinae98.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_constructible/try_test_is_constructible.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_constructible/try_test_is_constructible.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_copy_assignable/is_copy_assignable.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_copy_assignable/is_copy_assignable.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_copy_assignable/is_copy_assignable.isa.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_copy_assignable/is_copy_assignable.isa.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_copy_assignable/is_copy_assignable.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_copy_assignable/is_copy_assignable.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_copy_constructible/is_copy_constructible.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_copy_constructible/is_copy_constructible.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_destructible/is_destructible.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_destructible/is_destructible.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_destructible/is_destructible.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_destructible/is_destructible.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_destructible/is_destructible.sfinae.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_destructible/is_destructible.sfinae.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_destructible/try_test_is_destructible.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_destructible/try_test_is_destructible.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_empty/is_empty.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_empty/is_empty.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_empty/is_empty.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_empty/is_empty.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_empty/is_empty.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_empty/is_empty.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_empty/try_test_is_empty.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_empty/try_test_is_empty.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_empty/try_test_is_empty.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_empty/try_test_is_empty.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_empty/try_test_is_empty.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_empty/try_test_is_empty.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_enum/is_enum.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_enum/is_enum.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_enum/is_enum.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_enum/is_enum.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_enum/is_enum.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_enum/is_enum.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_enum/try_test_is_enum.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_enum/try_test_is_enum.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_enum/try_test_is_enum.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_enum/try_test_is_enum.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_enum/try_test_is_enum.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_enum/try_test_is_enum.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_final/is_final.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_final/is_final.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_final/is_final.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_final/is_final.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_final/is_final.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_final/is_final.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_final/try_test_is_final.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_final/try_test_is_final.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_final/try_test_is_final.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_final/try_test_is_final.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_final/try_test_is_final.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_final/try_test_is_final.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_move_assignable/is_move_assignable.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_move_assignable/is_move_assignable.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_move_assignable/is_move_assignable.isa.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_move_assignable/is_move_assignable.isa.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_move_assignable/is_move_assignable.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_move_assignable/is_move_assignable.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_scalar/is_scalar.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_scalar/is_scalar.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_scalar/is_scalar.is_enum.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_scalar/is_scalar.is_enum.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_scalar/is_scalar.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_scalar/is_scalar.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_scalar/is_scalar.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_scalar/is_scalar.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_scalar/try_test_is_scalar.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_scalar/try_test_is_scalar.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_scalar/try_test_is_scalar.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_scalar/try_test_is_scalar.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_scalar/try_test_is_scalar.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_scalar/try_test_is_scalar.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_standard_layout/is_standard_layout.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_standard_layout/is_standard_layout.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_standard_layout/is_standard_layout.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_standard_layout/is_standard_layout.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_union/is_union.intrin.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_union/is_union.intrin.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_union/is_union.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_union/is_union.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_union/is_union.std.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_union/is_union.std.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_union/try_test_is_union.defi.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_union/try_test_is_union.defi.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_union/try_test_is_union.guess.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_union/try_test_is_union.guess.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/detail/is_union/try_test_is_union.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/detail/is_union/try_test_is_union.part.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/enable_if.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/extent.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/integral_constant.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_arithmetic.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_array.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_base_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_base_of.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_bounded_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_bounded_array.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_class.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_compound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_compound.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_const.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_copy_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_copy_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_copy_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_copy_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_cv.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_default_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_default_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_destructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_destructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_empty.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_final.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_final.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_floating_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_floating_point.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_function.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_fundamental.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_fundamental.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_lvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_member_function_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_member_function_pointer.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_member_object_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_member_object_pointer.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_member_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_member_pointer.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_move_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_move_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_move_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_move_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_copy_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_copy_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_copy_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_copy_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_default_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_default_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_destructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_destructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_move_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_move_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_nothrow_move_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_nothrow_move_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_null_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_null_pointer.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_referencable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_referencable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_rvalue_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_same.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_standard_layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_standard_layout.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_copy_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_copy_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_copy_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_copy_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_copyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_copyable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_default_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_default_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_destructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_destructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_move_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_move_assignable.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_trivially_move_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_trivially_move_constructible.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_unbounded_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_unbounded_array.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_union.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_void.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/logical.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/pointer_rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/pointer_rank.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/rank.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_all_extents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_all_extents.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_all_pointers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_all_pointers.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_const.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_cvref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_cvref.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_extent.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_pointer.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_reference.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/remove_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/remove_volatile.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/sign_deduction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/sign_deduction.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/size_compressed_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/size_compressed_type.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/tribool_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/tribool_constant.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/type_identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/type_identity.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/void_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/void_type.hpp -------------------------------------------------------------------------------- /include/kerbal/type_traits/yes_no_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/type_traits/yes_no_type.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/addressof.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/as_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/as_const.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/compressed_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/compressed_pair.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/compressed_pair/compressed_pair.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/compressed_pair/compressed_pair.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/costream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/costream.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/declval.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/forward.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/forward/detail/forward.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/forward/detail/forward.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/ignore_unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/ignore_unused.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/in_place.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/in_place.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/integer_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/integer_sequence.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/integer_sequence/detail/cxx11/index_sequence.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/integer_sequence/detail/cxx11/index_sequence.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/integer_sequence/detail/cxx11/integer_sequence.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/integer_sequence/detail/cxx11/integer_sequence.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/integer_sequence/detail/cxx11/make_index_sequence.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/integer_sequence/detail/cxx11/make_index_sequence.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/integer_sequence/detail/cxx11/make_integer_sequence.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/integer_sequence/detail/cxx11/make_integer_sequence.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/integer_sequence/detail/integer_sequence.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/integer_sequence/detail/integer_sequence.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/member_compress_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/member_compress_helper.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/member_compress_helper/detail/member_compress_helper_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/member_compress_helper/detail/member_compress_helper_impl.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/member_compress_helper/member_compress_helper.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/member_compress_helper/member_compress_helper.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/noncopyable.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/piecewise_construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/piecewise_construct.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/reference_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/reference_wrapper.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/static_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/static_block.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/std_pair/std_pair.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/std_pair/std_pair.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/std_tuple/std_tuple.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/std_tuple/std_tuple.fwd.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/storage.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/storage/detail/storage.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/storage/detail/storage.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/throw_this_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/throw_this_exception.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/tuple.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/tuple/detail/tuple.cxx11.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/tuple/detail/tuple.cxx11.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/tuple/detail/tuple.cxx98.part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/tuple/detail/tuple.cxx98.part.hpp -------------------------------------------------------------------------------- /include/kerbal/utility/tuple/tuple.fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/include/kerbal/utility/tuple/tuple.fwd.hpp -------------------------------------------------------------------------------- /kerbal.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/kerbal.clang-format -------------------------------------------------------------------------------- /kerbal.format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/kerbal.format.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/readme.md -------------------------------------------------------------------------------- /readme.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WentsingNee/Kerbal/HEAD/readme.zh.md --------------------------------------------------------------------------------