├── .gitignore ├── CMakeLists.txt ├── Dots.sln ├── Dots ├── Buffer.h ├── CDatabase.cpp ├── CDatabase.h ├── ChunkVector.h ├── Codebase.cpp ├── Codebase.h ├── CodebaseImpl.hpp ├── Database.cpp ├── Database.h ├── Dots.natvis ├── Dots.vcxproj ├── Dots.vcxproj.filters ├── Dots.vcxproj.user ├── RingBuffer.h ├── Type.h └── include │ ├── boost │ ├── hana.hpp │ └── hana │ │ ├── accessors.hpp │ │ ├── adapt_adt.hpp │ │ ├── adapt_struct.hpp │ │ ├── adjust.hpp │ │ ├── adjust_if.hpp │ │ ├── all.hpp │ │ ├── all_of.hpp │ │ ├── and.hpp │ │ ├── any.hpp │ │ ├── any_of.hpp │ │ ├── ap.hpp │ │ ├── append.hpp │ │ ├── assert.hpp │ │ ├── at.hpp │ │ ├── at_key.hpp │ │ ├── back.hpp │ │ ├── basic_tuple.hpp │ │ ├── bool.hpp │ │ ├── cartesian_product.hpp │ │ ├── chain.hpp │ │ ├── comparing.hpp │ │ ├── concat.hpp │ │ ├── concept.hpp │ │ ├── concept │ │ ├── applicative.hpp │ │ ├── comonad.hpp │ │ ├── comparable.hpp │ │ ├── constant.hpp │ │ ├── euclidean_ring.hpp │ │ ├── foldable.hpp │ │ ├── functor.hpp │ │ ├── group.hpp │ │ ├── hashable.hpp │ │ ├── integral_constant.hpp │ │ ├── iterable.hpp │ │ ├── logical.hpp │ │ ├── metafunction.hpp │ │ ├── monad.hpp │ │ ├── monad_plus.hpp │ │ ├── monoid.hpp │ │ ├── orderable.hpp │ │ ├── product.hpp │ │ ├── ring.hpp │ │ ├── searchable.hpp │ │ ├── sequence.hpp │ │ └── struct.hpp │ │ ├── config.hpp │ │ ├── contains.hpp │ │ ├── core.hpp │ │ ├── core │ │ ├── common.hpp │ │ ├── default.hpp │ │ ├── dispatch.hpp │ │ ├── is_a.hpp │ │ ├── make.hpp │ │ ├── tag_of.hpp │ │ ├── to.hpp │ │ └── when.hpp │ │ ├── count.hpp │ │ ├── count_if.hpp │ │ ├── cycle.hpp │ │ ├── define_struct.hpp │ │ ├── detail │ │ ├── algorithm.hpp │ │ ├── any_of.hpp │ │ ├── array.hpp │ │ ├── canonical_constant.hpp │ │ ├── concepts.hpp │ │ ├── create.hpp │ │ ├── decay.hpp │ │ ├── dispatch_if.hpp │ │ ├── ebo.hpp │ │ ├── fast_and.hpp │ │ ├── first_unsatisfied_index.hpp │ │ ├── has_common_embedding.hpp │ │ ├── has_duplicates.hpp │ │ ├── hash_table.hpp │ │ ├── index_if.hpp │ │ ├── integral_constant.hpp │ │ ├── intrinsics.hpp │ │ ├── nested_by.hpp │ │ ├── nested_by_fwd.hpp │ │ ├── nested_than.hpp │ │ ├── nested_than_fwd.hpp │ │ ├── nested_to.hpp │ │ ├── nested_to_fwd.hpp │ │ ├── operators │ │ │ ├── adl.hpp │ │ │ ├── arithmetic.hpp │ │ │ ├── comparable.hpp │ │ │ ├── iterable.hpp │ │ │ ├── logical.hpp │ │ │ ├── monad.hpp │ │ │ ├── orderable.hpp │ │ │ └── searchable.hpp │ │ ├── preprocessor.hpp │ │ ├── std_common_type.hpp │ │ ├── struct_macros.hpp │ │ ├── struct_macros.hpp.erb │ │ ├── type_at.hpp │ │ ├── type_foldl1.hpp │ │ ├── type_foldr1.hpp │ │ ├── unpack_flatten.hpp │ │ ├── variadic │ │ │ ├── at.hpp │ │ │ ├── drop_into.hpp │ │ │ ├── foldl1.hpp │ │ │ ├── foldr1.hpp │ │ │ ├── reverse_apply.hpp │ │ │ ├── reverse_apply │ │ │ │ ├── flat.hpp │ │ │ │ └── unrolled.hpp │ │ │ ├── split_at.hpp │ │ │ └── take.hpp │ │ ├── void_t.hpp │ │ └── wrong.hpp │ │ ├── difference.hpp │ │ ├── div.hpp │ │ ├── drop_back.hpp │ │ ├── drop_front.hpp │ │ ├── drop_front_exactly.hpp │ │ ├── drop_while.hpp │ │ ├── duplicate.hpp │ │ ├── empty.hpp │ │ ├── equal.hpp │ │ ├── erase_key.hpp │ │ ├── eval.hpp │ │ ├── eval_if.hpp │ │ ├── experimental │ │ ├── printable.hpp │ │ ├── type_name.hpp │ │ ├── types.hpp │ │ └── view.hpp │ │ ├── ext │ │ ├── boost.hpp │ │ ├── boost │ │ │ ├── fusion.hpp │ │ │ ├── fusion │ │ │ │ ├── deque.hpp │ │ │ │ ├── detail │ │ │ │ │ └── common.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ └── vector.hpp │ │ │ ├── mpl.hpp │ │ │ ├── mpl │ │ │ │ ├── integral_c.hpp │ │ │ │ ├── list.hpp │ │ │ │ └── vector.hpp │ │ │ └── tuple.hpp │ │ ├── std.hpp │ │ └── std │ │ │ ├── array.hpp │ │ │ ├── integer_sequence.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── pair.hpp │ │ │ ├── ratio.hpp │ │ │ ├── tuple.hpp │ │ │ └── vector.hpp │ │ ├── extend.hpp │ │ ├── extract.hpp │ │ ├── fill.hpp │ │ ├── filter.hpp │ │ ├── find.hpp │ │ ├── find_if.hpp │ │ ├── first.hpp │ │ ├── flatten.hpp │ │ ├── fold.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── front.hpp │ │ ├── functional.hpp │ │ ├── functional │ │ ├── always.hpp │ │ ├── apply.hpp │ │ ├── arg.hpp │ │ ├── capture.hpp │ │ ├── compose.hpp │ │ ├── curry.hpp │ │ ├── demux.hpp │ │ ├── fix.hpp │ │ ├── flip.hpp │ │ ├── id.hpp │ │ ├── infix.hpp │ │ ├── iterate.hpp │ │ ├── lockstep.hpp │ │ ├── on.hpp │ │ ├── overload.hpp │ │ ├── overload_linearly.hpp │ │ ├── partial.hpp │ │ ├── placeholder.hpp │ │ └── reverse_partial.hpp │ │ ├── fuse.hpp │ │ ├── fwd │ │ ├── accessors.hpp │ │ ├── adapt_adt.hpp │ │ ├── adapt_struct.hpp │ │ ├── adjust.hpp │ │ ├── adjust_if.hpp │ │ ├── all.hpp │ │ ├── all_of.hpp │ │ ├── and.hpp │ │ ├── any.hpp │ │ ├── any_of.hpp │ │ ├── ap.hpp │ │ ├── append.hpp │ │ ├── at.hpp │ │ ├── at_key.hpp │ │ ├── back.hpp │ │ ├── basic_tuple.hpp │ │ ├── bool.hpp │ │ ├── cartesian_product.hpp │ │ ├── chain.hpp │ │ ├── comparing.hpp │ │ ├── concat.hpp │ │ ├── concept │ │ │ ├── applicative.hpp │ │ │ ├── comonad.hpp │ │ │ ├── comparable.hpp │ │ │ ├── constant.hpp │ │ │ ├── euclidean_ring.hpp │ │ │ ├── foldable.hpp │ │ │ ├── functor.hpp │ │ │ ├── group.hpp │ │ │ ├── hashable.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── iterable.hpp │ │ │ ├── logical.hpp │ │ │ ├── metafunction.hpp │ │ │ ├── monad.hpp │ │ │ ├── monad_plus.hpp │ │ │ ├── monoid.hpp │ │ │ ├── orderable.hpp │ │ │ ├── product.hpp │ │ │ ├── ring.hpp │ │ │ ├── searchable.hpp │ │ │ ├── sequence.hpp │ │ │ └── struct.hpp │ │ ├── contains.hpp │ │ ├── core.hpp │ │ ├── core │ │ │ ├── common.hpp │ │ │ ├── default.hpp │ │ │ ├── is_a.hpp │ │ │ ├── make.hpp │ │ │ ├── tag_of.hpp │ │ │ ├── to.hpp │ │ │ └── when.hpp │ │ ├── count.hpp │ │ ├── count_if.hpp │ │ ├── cycle.hpp │ │ ├── define_struct.hpp │ │ ├── difference.hpp │ │ ├── div.hpp │ │ ├── drop_back.hpp │ │ ├── drop_front.hpp │ │ ├── drop_front_exactly.hpp │ │ ├── drop_while.hpp │ │ ├── duplicate.hpp │ │ ├── empty.hpp │ │ ├── equal.hpp │ │ ├── erase_key.hpp │ │ ├── eval.hpp │ │ ├── eval_if.hpp │ │ ├── extend.hpp │ │ ├── extract.hpp │ │ ├── fill.hpp │ │ ├── filter.hpp │ │ ├── find.hpp │ │ ├── find_if.hpp │ │ ├── first.hpp │ │ ├── flatten.hpp │ │ ├── fold.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── front.hpp │ │ ├── fuse.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── group.hpp │ │ ├── hash.hpp │ │ ├── if.hpp │ │ ├── index_if.hpp │ │ ├── insert.hpp │ │ ├── insert_range.hpp │ │ ├── integral_constant.hpp │ │ ├── intersection.hpp │ │ ├── intersperse.hpp │ │ ├── is_disjoint.hpp │ │ ├── is_empty.hpp │ │ ├── is_subset.hpp │ │ ├── keys.hpp │ │ ├── lazy.hpp │ │ ├── length.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── lexicographical_compare.hpp │ │ ├── lift.hpp │ │ ├── map.hpp │ │ ├── max.hpp │ │ ├── maximum.hpp │ │ ├── members.hpp │ │ ├── min.hpp │ │ ├── minimum.hpp │ │ ├── minus.hpp │ │ ├── mod.hpp │ │ ├── monadic_compose.hpp │ │ ├── monadic_fold_left.hpp │ │ ├── monadic_fold_right.hpp │ │ ├── mult.hpp │ │ ├── negate.hpp │ │ ├── none.hpp │ │ ├── none_of.hpp │ │ ├── not.hpp │ │ ├── not_equal.hpp │ │ ├── one.hpp │ │ ├── optional.hpp │ │ ├── or.hpp │ │ ├── ordering.hpp │ │ ├── pair.hpp │ │ ├── partition.hpp │ │ ├── permutations.hpp │ │ ├── plus.hpp │ │ ├── power.hpp │ │ ├── prefix.hpp │ │ ├── prepend.hpp │ │ ├── product.hpp │ │ ├── range.hpp │ │ ├── remove.hpp │ │ ├── remove_at.hpp │ │ ├── remove_if.hpp │ │ ├── remove_range.hpp │ │ ├── repeat.hpp │ │ ├── replace.hpp │ │ ├── replace_if.hpp │ │ ├── replicate.hpp │ │ ├── reverse.hpp │ │ ├── reverse_fold.hpp │ │ ├── scan_left.hpp │ │ ├── scan_right.hpp │ │ ├── second.hpp │ │ ├── set.hpp │ │ ├── size.hpp │ │ ├── slice.hpp │ │ ├── sort.hpp │ │ ├── span.hpp │ │ ├── string.hpp │ │ ├── suffix.hpp │ │ ├── sum.hpp │ │ ├── symmetric_difference.hpp │ │ ├── take_back.hpp │ │ ├── take_front.hpp │ │ ├── take_while.hpp │ │ ├── tap.hpp │ │ ├── then.hpp │ │ ├── transform.hpp │ │ ├── tuple.hpp │ │ ├── type.hpp │ │ ├── unfold_left.hpp │ │ ├── unfold_right.hpp │ │ ├── union.hpp │ │ ├── unique.hpp │ │ ├── unpack.hpp │ │ ├── value.hpp │ │ ├── while.hpp │ │ ├── zero.hpp │ │ ├── zip.hpp │ │ ├── zip_shortest.hpp │ │ ├── zip_shortest_with.hpp │ │ └── zip_with.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── group.hpp │ │ ├── hash.hpp │ │ ├── if.hpp │ │ ├── index_if.hpp │ │ ├── insert.hpp │ │ ├── insert_range.hpp │ │ ├── integral_constant.hpp │ │ ├── intersection.hpp │ │ ├── intersperse.hpp │ │ ├── is_disjoint.hpp │ │ ├── is_empty.hpp │ │ ├── is_subset.hpp │ │ ├── keys.hpp │ │ ├── lazy.hpp │ │ ├── length.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── lexicographical_compare.hpp │ │ ├── lift.hpp │ │ ├── map.hpp │ │ ├── max.hpp │ │ ├── maximum.hpp │ │ ├── members.hpp │ │ ├── min.hpp │ │ ├── minimum.hpp │ │ ├── minus.hpp │ │ ├── mod.hpp │ │ ├── monadic_compose.hpp │ │ ├── monadic_fold_left.hpp │ │ ├── monadic_fold_right.hpp │ │ ├── mult.hpp │ │ ├── negate.hpp │ │ ├── none.hpp │ │ ├── none_of.hpp │ │ ├── not.hpp │ │ ├── not_equal.hpp │ │ ├── one.hpp │ │ ├── optional.hpp │ │ ├── or.hpp │ │ ├── ordering.hpp │ │ ├── pair.hpp │ │ ├── partition.hpp │ │ ├── permutations.hpp │ │ ├── plus.hpp │ │ ├── power.hpp │ │ ├── prefix.hpp │ │ ├── prepend.hpp │ │ ├── product.hpp │ │ ├── range.hpp │ │ ├── remove.hpp │ │ ├── remove_at.hpp │ │ ├── remove_if.hpp │ │ ├── remove_range.hpp │ │ ├── repeat.hpp │ │ ├── replace.hpp │ │ ├── replace_if.hpp │ │ ├── replicate.hpp │ │ ├── reverse.hpp │ │ ├── reverse_fold.hpp │ │ ├── scan_left.hpp │ │ ├── scan_right.hpp │ │ ├── second.hpp │ │ ├── set.hpp │ │ ├── size.hpp │ │ ├── slice.hpp │ │ ├── sort.hpp │ │ ├── span.hpp │ │ ├── string.hpp │ │ ├── suffix.hpp │ │ ├── sum.hpp │ │ ├── symmetric_difference.hpp │ │ ├── take_back.hpp │ │ ├── take_front.hpp │ │ ├── take_while.hpp │ │ ├── tap.hpp │ │ ├── then.hpp │ │ ├── traits.hpp │ │ ├── transform.hpp │ │ ├── tuple.hpp │ │ ├── type.hpp │ │ ├── unfold_left.hpp │ │ ├── unfold_right.hpp │ │ ├── union.hpp │ │ ├── unique.hpp │ │ ├── unpack.hpp │ │ ├── value.hpp │ │ ├── version.hpp │ │ ├── while.hpp │ │ ├── zero.hpp │ │ ├── zip.hpp │ │ ├── zip_shortest.hpp │ │ ├── zip_shortest_with.hpp │ │ └── zip_with.hpp │ └── gsl │ ├── algorithm │ ├── assert │ ├── byte │ ├── gsl │ ├── gsl_algorithm │ ├── gsl_assert │ ├── gsl_byte │ ├── gsl_narrow │ ├── gsl_util │ ├── narrow │ ├── pointers │ ├── span │ ├── span_ext │ ├── string_span │ └── util ├── DotsRuntime ├── DotsRuntime.cpp ├── DotsRuntime.h ├── DotsRuntime.vcxproj ├── DotsRuntime.vcxproj.filters ├── DotsRuntime.vcxproj.user ├── Set.h └── concurrentqueue.h ├── DotsTest ├── DotsTest.vcxproj ├── DotsTest.vcxproj.user ├── include │ ├── marl │ │ ├── blockingcall.h │ │ ├── conditionvariable.h │ │ ├── containers.h │ │ ├── dag.h │ │ ├── debug.h │ │ ├── defer.h │ │ ├── deprecated.h │ │ ├── event.h │ │ ├── export.h │ │ ├── finally.h │ │ ├── memory.h │ │ ├── mutex.h │ │ ├── parallelize.h │ │ ├── pool.h │ │ ├── sanitizers.h │ │ ├── scheduler.h │ │ ├── task.h │ │ ├── thread.h │ │ ├── ticket.h │ │ ├── trace.h │ │ ├── tsa.h │ │ └── waitgroup.h │ └── taskflow │ │ ├── algorithm │ │ ├── for_each.hpp │ │ └── reduce.hpp │ │ ├── core │ │ ├── error.hpp │ │ ├── executor.hpp │ │ ├── flow_builder.hpp │ │ ├── graph.hpp │ │ ├── notifier.hpp │ │ ├── observer.hpp │ │ ├── task.hpp │ │ ├── taskflow.hpp │ │ ├── topology.hpp │ │ └── tsq.hpp │ │ ├── cuda │ │ ├── cuda_device.hpp │ │ ├── cuda_error.hpp │ │ ├── cuda_flow.hpp │ │ ├── cuda_graph.hpp │ │ ├── cuda_ops.hpp │ │ └── cuda_task.hpp │ │ ├── declarations.hpp │ │ ├── dsl.hpp │ │ ├── dsl │ │ ├── connection.hpp │ │ ├── meta_macro.hpp │ │ ├── task_analyzer.hpp │ │ ├── task_dsl.hpp │ │ ├── task_trait.hpp │ │ ├── tuple_utils.hpp │ │ └── type_list.hpp │ │ ├── nstd │ │ ├── any.hpp │ │ ├── optional.hpp │ │ └── variant.hpp │ │ ├── taskflow.hpp │ │ ├── tensorframe.hpp │ │ ├── tensorframe │ │ ├── tensor.hpp │ │ ├── tensor_expr.hpp │ │ ├── tensor_graph.hpp │ │ ├── tensor_ops.hpp │ │ └── tensorframe.hpp │ │ └── utility │ │ ├── iterator.hpp │ │ ├── object_pool.hpp │ │ ├── os.hpp │ │ ├── passive_vector.hpp │ │ ├── singleton.hpp │ │ ├── stringify.hpp │ │ ├── traits.hpp │ │ └── uuid.hpp ├── kdtree.h ├── main.cpp ├── packages.config ├── pch.cpp ├── pch.h ├── test.cpp ├── test2.cpp ├── transform.cpp └── transform.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dots.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots.sln -------------------------------------------------------------------------------- /Dots/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Buffer.h -------------------------------------------------------------------------------- /Dots/CDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/CDatabase.cpp -------------------------------------------------------------------------------- /Dots/CDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/CDatabase.h -------------------------------------------------------------------------------- /Dots/ChunkVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/ChunkVector.h -------------------------------------------------------------------------------- /Dots/Codebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Codebase.cpp -------------------------------------------------------------------------------- /Dots/Codebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Codebase.h -------------------------------------------------------------------------------- /Dots/CodebaseImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/CodebaseImpl.hpp -------------------------------------------------------------------------------- /Dots/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Database.cpp -------------------------------------------------------------------------------- /Dots/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Database.h -------------------------------------------------------------------------------- /Dots/Dots.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Dots.natvis -------------------------------------------------------------------------------- /Dots/Dots.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Dots.vcxproj -------------------------------------------------------------------------------- /Dots/Dots.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Dots.vcxproj.filters -------------------------------------------------------------------------------- /Dots/Dots.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Dots.vcxproj.user -------------------------------------------------------------------------------- /Dots/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/RingBuffer.h -------------------------------------------------------------------------------- /Dots/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/Type.h -------------------------------------------------------------------------------- /Dots/include/boost/hana.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/accessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/accessors.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/adapt_adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/adapt_adt.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/adapt_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/adapt_struct.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/adjust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/adjust.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/adjust_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/adjust_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/all.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/all_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/all_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/and.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/any.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/any_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/any_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ap.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/append.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/assert.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/at.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/at_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/at_key.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/back.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/basic_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/basic_tuple.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/bool.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/cartesian_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/cartesian_product.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/chain.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/comparing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/comparing.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concat.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/applicative.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/applicative.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/comonad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/comonad.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/comparable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/comparable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/euclidean_ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/euclidean_ring.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/foldable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/foldable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/functor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/functor.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/group.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/hashable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/hashable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/integral_constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/iterable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/iterable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/logical.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/metafunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/metafunction.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/monad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/monad.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/monad_plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/monad_plus.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/monoid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/monoid.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/orderable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/orderable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/product.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/ring.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/searchable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/searchable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/sequence.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/concept/struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/concept/struct.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/config.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/contains.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/common.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/default.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/dispatch.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/is_a.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/is_a.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/make.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/make.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/tag_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/tag_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/to.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/core/when.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/core/when.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/count.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/count_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/count_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/cycle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/cycle.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/define_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/define_struct.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/algorithm.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/any_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/any_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/array.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/canonical_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/canonical_constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/concepts.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/create.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/create.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/decay.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/dispatch_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/dispatch_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/ebo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/ebo.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/fast_and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/fast_and.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/first_unsatisfied_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/first_unsatisfied_index.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/has_common_embedding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/has_common_embedding.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/has_duplicates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/has_duplicates.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/hash_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/hash_table.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/index_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/index_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/integral_constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/intrinsics.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/nested_by.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/nested_by.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/nested_by_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/nested_by_fwd.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/nested_than.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/nested_than.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/nested_than_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/nested_than_fwd.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/nested_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/nested_to.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/nested_to_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/nested_to_fwd.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/adl.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/arithmetic.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/comparable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/comparable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/iterable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/iterable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/logical.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/monad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/monad.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/orderable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/orderable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/operators/searchable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/operators/searchable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/preprocessor.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/std_common_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/std_common_type.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/struct_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/struct_macros.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/struct_macros.hpp.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/struct_macros.hpp.erb -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/type_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/type_at.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/type_foldl1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/type_foldl1.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/type_foldr1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/type_foldr1.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/unpack_flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/unpack_flatten.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/at.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/drop_into.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/drop_into.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/foldl1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/foldl1.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/foldr1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/foldr1.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/reverse_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/reverse_apply.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/reverse_apply/flat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/reverse_apply/flat.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/reverse_apply/unrolled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/reverse_apply/unrolled.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/split_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/split_at.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/variadic/take.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/variadic/take.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/void_t.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/detail/wrong.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/detail/wrong.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/difference.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/div.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/drop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/drop_back.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/drop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/drop_front.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/drop_front_exactly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/drop_front_exactly.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/drop_while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/drop_while.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/duplicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/duplicate.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/empty.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/erase_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/erase_key.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/eval.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/eval_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/experimental/printable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/experimental/printable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/experimental/type_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/experimental/type_name.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/experimental/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/experimental/types.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/experimental/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/experimental/view.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/fusion.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/fusion/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/fusion/deque.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/fusion/detail/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/fusion/detail/common.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/fusion/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/fusion/list.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/fusion/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/fusion/tuple.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/fusion/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/fusion/vector.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/mpl.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/mpl/list.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/boost/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/boost/tuple.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std/array.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std/integer_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std/integer_sequence.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std/integral_constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std/pair.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std/ratio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std/ratio.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std/tuple.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ext/std/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ext/std/vector.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/extend.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/extract.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fill.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/filter.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/find.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/find_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/first.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/first.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/flatten.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fold.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fold_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fold_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/for_each.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/front.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/always.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/apply.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/arg.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/capture.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/compose.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/curry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/curry.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/demux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/demux.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/fix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/fix.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/flip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/flip.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/id.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/infix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/infix.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/iterate.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/lockstep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/lockstep.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/on.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/on.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/overload.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/overload_linearly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/overload_linearly.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/partial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/partial.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/placeholder.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/functional/reverse_partial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/functional/reverse_partial.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fuse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fuse.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/accessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/accessors.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/adapt_adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/adapt_adt.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/adapt_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/adapt_struct.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/adjust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/adjust.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/adjust_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/adjust_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/all.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/all_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/all_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/and.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/any.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/any_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/any_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/ap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/ap.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/append.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/at.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/at_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/at_key.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/back.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/basic_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/basic_tuple.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/bool.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/cartesian_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/cartesian_product.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/chain.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/comparing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/comparing.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concat.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/applicative.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/applicative.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/comonad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/comonad.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/comparable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/comparable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/euclidean_ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/euclidean_ring.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/foldable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/foldable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/functor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/functor.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/group.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/hashable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/hashable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/integral_constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/iterable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/iterable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/logical.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/metafunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/metafunction.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/monad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/monad.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/monad_plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/monad_plus.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/monoid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/monoid.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/orderable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/orderable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/product.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/ring.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/searchable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/searchable.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/sequence.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/concept/struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/concept/struct.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/contains.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core/common.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core/default.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core/is_a.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core/is_a.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core/make.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core/make.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core/tag_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core/tag_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core/to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core/to.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/core/when.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/core/when.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/count.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/count_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/count_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/cycle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/cycle.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/define_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/define_struct.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/difference.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/div.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/drop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/drop_back.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/drop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/drop_front.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/drop_front_exactly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/drop_front_exactly.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/drop_while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/drop_while.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/duplicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/duplicate.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/empty.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/erase_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/erase_key.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/eval.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/eval_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/extend.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/extract.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/fill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/fill.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/filter.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/find.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/find_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/first.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/first.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/flatten.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/fold.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/fold_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/fold_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/for_each.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/front.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/fuse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/fuse.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/greater.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/greater_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/greater_equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/group.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/hash.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/index_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/index_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/insert.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/insert_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/insert_range.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/integral_constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/intersection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/intersection.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/intersperse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/intersperse.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/is_disjoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/is_disjoint.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/is_empty.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/is_subset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/is_subset.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/keys.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/lazy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/lazy.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/length.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/less.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/less_equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/lexicographical_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/lexicographical_compare.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/lift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/lift.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/map.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/max.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/maximum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/maximum.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/members.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/members.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/min.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/minimum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/minimum.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/minus.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/mod.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/monadic_compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/monadic_compose.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/monadic_fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/monadic_fold_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/monadic_fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/monadic_fold_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/mult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/mult.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/negate.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/none.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/none_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/none_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/not.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/not_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/not_equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/one.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/optional.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/or.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/ordering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/ordering.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/pair.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/partition.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/permutations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/permutations.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/plus.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/power.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/power.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/prefix.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/prepend.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/product.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/range.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/remove.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/remove_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/remove_at.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/remove_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/remove_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/remove_range.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/repeat.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/replace.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/replace_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/replace_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/replicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/replicate.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/reverse.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/reverse_fold.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/scan_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/scan_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/scan_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/scan_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/second.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/second.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/set.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/size.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/slice.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/sort.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/span.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/string.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/suffix.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/sum.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/symmetric_difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/symmetric_difference.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/take_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/take_back.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/take_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/take_front.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/take_while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/take_while.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/tap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/tap.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/then.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/then.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/transform.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/tuple.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/type.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/unfold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/unfold_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/unfold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/unfold_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/union.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/unique.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/unpack.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/value.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/while.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/zero.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/zip.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/zip_shortest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/zip_shortest.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/zip_shortest_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/zip_shortest_with.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/fwd/zip_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/fwd/zip_with.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/greater.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/greater_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/greater_equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/group.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/hash.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/index_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/index_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/insert.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/insert_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/insert_range.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/integral_constant.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/intersection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/intersection.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/intersperse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/intersperse.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/is_disjoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/is_disjoint.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/is_empty.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/is_subset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/is_subset.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/keys.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/lazy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/lazy.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/length.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/length.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/less.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/less_equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/lexicographical_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/lexicographical_compare.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/lift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/lift.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/map.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/max.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/maximum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/maximum.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/members.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/members.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/min.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/minimum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/minimum.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/minus.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/mod.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/monadic_compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/monadic_compose.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/monadic_fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/monadic_fold_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/monadic_fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/monadic_fold_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/mult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/mult.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/negate.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/none.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/none_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/none_of.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/not.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/not_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/not_equal.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/one.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/optional.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/or.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/ordering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/ordering.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/pair.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/partition.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/permutations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/permutations.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/plus.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/power.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/power.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/prefix.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/prepend.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/product.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/range.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/remove.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/remove_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/remove_at.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/remove_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/remove_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/remove_range.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/repeat.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/replace.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/replace_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/replace_if.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/replicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/replicate.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/reverse.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/reverse_fold.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/scan_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/scan_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/scan_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/scan_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/second.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/second.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/set.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/size.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/slice.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/sort.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/span.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/string.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/suffix.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/sum.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/symmetric_difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/symmetric_difference.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/take_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/take_back.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/take_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/take_front.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/take_while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/take_while.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/tap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/tap.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/then.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/then.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/traits.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/transform.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/tuple.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/type.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/unfold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/unfold_left.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/unfold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/unfold_right.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/union.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/unique.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/unpack.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/value.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/version.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/while.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/zero.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/zip.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/zip_shortest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/zip_shortest.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/zip_shortest_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/zip_shortest_with.hpp -------------------------------------------------------------------------------- /Dots/include/boost/hana/zip_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/boost/hana/zip_with.hpp -------------------------------------------------------------------------------- /Dots/include/gsl/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/algorithm -------------------------------------------------------------------------------- /Dots/include/gsl/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/assert -------------------------------------------------------------------------------- /Dots/include/gsl/byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/byte -------------------------------------------------------------------------------- /Dots/include/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/gsl -------------------------------------------------------------------------------- /Dots/include/gsl/gsl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/gsl_algorithm -------------------------------------------------------------------------------- /Dots/include/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/gsl_assert -------------------------------------------------------------------------------- /Dots/include/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/gsl_byte -------------------------------------------------------------------------------- /Dots/include/gsl/gsl_narrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/gsl_narrow -------------------------------------------------------------------------------- /Dots/include/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/gsl_util -------------------------------------------------------------------------------- /Dots/include/gsl/narrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/narrow -------------------------------------------------------------------------------- /Dots/include/gsl/pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/pointers -------------------------------------------------------------------------------- /Dots/include/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/span -------------------------------------------------------------------------------- /Dots/include/gsl/span_ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/span_ext -------------------------------------------------------------------------------- /Dots/include/gsl/string_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/string_span -------------------------------------------------------------------------------- /Dots/include/gsl/util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/Dots/include/gsl/util -------------------------------------------------------------------------------- /DotsRuntime/DotsRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsRuntime/DotsRuntime.cpp -------------------------------------------------------------------------------- /DotsRuntime/DotsRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsRuntime/DotsRuntime.h -------------------------------------------------------------------------------- /DotsRuntime/DotsRuntime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsRuntime/DotsRuntime.vcxproj -------------------------------------------------------------------------------- /DotsRuntime/DotsRuntime.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsRuntime/DotsRuntime.vcxproj.filters -------------------------------------------------------------------------------- /DotsRuntime/DotsRuntime.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsRuntime/DotsRuntime.vcxproj.user -------------------------------------------------------------------------------- /DotsRuntime/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsRuntime/Set.h -------------------------------------------------------------------------------- /DotsRuntime/concurrentqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsRuntime/concurrentqueue.h -------------------------------------------------------------------------------- /DotsTest/DotsTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/DotsTest.vcxproj -------------------------------------------------------------------------------- /DotsTest/DotsTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/DotsTest.vcxproj.user -------------------------------------------------------------------------------- /DotsTest/include/marl/blockingcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/blockingcall.h -------------------------------------------------------------------------------- /DotsTest/include/marl/conditionvariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/conditionvariable.h -------------------------------------------------------------------------------- /DotsTest/include/marl/containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/containers.h -------------------------------------------------------------------------------- /DotsTest/include/marl/dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/dag.h -------------------------------------------------------------------------------- /DotsTest/include/marl/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/debug.h -------------------------------------------------------------------------------- /DotsTest/include/marl/defer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/defer.h -------------------------------------------------------------------------------- /DotsTest/include/marl/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/deprecated.h -------------------------------------------------------------------------------- /DotsTest/include/marl/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/event.h -------------------------------------------------------------------------------- /DotsTest/include/marl/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/export.h -------------------------------------------------------------------------------- /DotsTest/include/marl/finally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/finally.h -------------------------------------------------------------------------------- /DotsTest/include/marl/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/memory.h -------------------------------------------------------------------------------- /DotsTest/include/marl/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/mutex.h -------------------------------------------------------------------------------- /DotsTest/include/marl/parallelize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/parallelize.h -------------------------------------------------------------------------------- /DotsTest/include/marl/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/pool.h -------------------------------------------------------------------------------- /DotsTest/include/marl/sanitizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/sanitizers.h -------------------------------------------------------------------------------- /DotsTest/include/marl/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/scheduler.h -------------------------------------------------------------------------------- /DotsTest/include/marl/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/task.h -------------------------------------------------------------------------------- /DotsTest/include/marl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/thread.h -------------------------------------------------------------------------------- /DotsTest/include/marl/ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/ticket.h -------------------------------------------------------------------------------- /DotsTest/include/marl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/trace.h -------------------------------------------------------------------------------- /DotsTest/include/marl/tsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/tsa.h -------------------------------------------------------------------------------- /DotsTest/include/marl/waitgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/marl/waitgroup.h -------------------------------------------------------------------------------- /DotsTest/include/taskflow/algorithm/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/algorithm/for_each.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/algorithm/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/algorithm/reduce.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/error.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/executor.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/flow_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/flow_builder.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/graph.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/notifier.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/observer.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/task.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/taskflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/taskflow.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/topology.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/topology.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/core/tsq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/core/tsq.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/cuda/cuda_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/cuda/cuda_device.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/cuda/cuda_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/cuda/cuda_error.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/cuda/cuda_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/cuda/cuda_flow.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/cuda/cuda_graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/cuda/cuda_graph.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/cuda/cuda_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/cuda/cuda_ops.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/cuda/cuda_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/cuda/cuda_task.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/declarations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/declarations.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl/connection.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl/meta_macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl/meta_macro.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl/task_analyzer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl/task_analyzer.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl/task_dsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl/task_dsl.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl/task_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl/task_trait.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl/tuple_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl/tuple_utils.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/dsl/type_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/dsl/type_list.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/nstd/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/nstd/any.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/nstd/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/nstd/optional.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/nstd/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/nstd/variant.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/taskflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/taskflow.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/tensorframe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/tensorframe.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/tensorframe/tensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/tensorframe/tensor.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/tensorframe/tensor_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/tensorframe/tensor_expr.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/tensorframe/tensor_graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/tensorframe/tensor_graph.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/tensorframe/tensor_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/tensorframe/tensor_ops.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/tensorframe/tensorframe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/tensorframe/tensorframe.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/iterator.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/object_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/object_pool.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/os.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/passive_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/passive_vector.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/singleton.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/stringify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/stringify.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/traits.hpp -------------------------------------------------------------------------------- /DotsTest/include/taskflow/utility/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/include/taskflow/utility/uuid.hpp -------------------------------------------------------------------------------- /DotsTest/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/kdtree.h -------------------------------------------------------------------------------- /DotsTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/main.cpp -------------------------------------------------------------------------------- /DotsTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/packages.config -------------------------------------------------------------------------------- /DotsTest/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/pch.cpp -------------------------------------------------------------------------------- /DotsTest/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/pch.h -------------------------------------------------------------------------------- /DotsTest/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/test.cpp -------------------------------------------------------------------------------- /DotsTest/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/test2.cpp -------------------------------------------------------------------------------- /DotsTest/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/transform.cpp -------------------------------------------------------------------------------- /DotsTest/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/DotsTest/transform.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenzzzX/Dots/HEAD/README.md --------------------------------------------------------------------------------