├── .gitignore ├── CMakeLists.txt ├── README.md ├── appveyor.yml ├── benchmark ├── CMakeLists.txt ├── GoogleBenchmark.cmake ├── bintoken │ └── benchmark_reader.cpp └── json │ ├── benchmark_reader.cpp │ └── benchmark_real.cpp ├── cmake └── CMakeLists.txt ├── doc ├── Jamfile.v2 ├── core │ ├── adapter.qbk │ ├── core.qbk │ └── serialization.qbk ├── dynamic │ ├── Jamfile.v2 │ ├── algorithm.qbk │ ├── concept.qbk │ ├── converter.qbk │ ├── dynamic.qbk │ ├── function.qbk │ ├── guide.qbk │ ├── rationale.qbk │ ├── tutorial.qbk │ └── type.qbk ├── json │ ├── design.qbk │ ├── error.qbk │ ├── guide.qbk │ ├── iarchive.qbk │ ├── json.qbk │ ├── oarchive.qbk │ ├── overview.qbk │ ├── reader.qbk │ ├── reference.qbk │ ├── token.qbk │ ├── tutorial.qbk │ └── writer.qbk └── protocol.qbk ├── example └── json │ ├── CMakeLists.txt │ ├── chunked_push_parser │ ├── CMakeLists.txt │ ├── chunked_push_parser.hpp │ └── main.cpp │ ├── pretty_printer │ ├── CMakeLists.txt │ ├── main.cpp │ └── pretty_printer.hpp │ ├── property_tree │ ├── CMakeLists.txt │ ├── json_parser.hpp │ ├── main.cpp │ ├── read_json_internal.hpp │ └── write_json_internal.hpp │ └── push_parser │ ├── CMakeLists.txt │ ├── main.cpp │ └── push_parser.hpp ├── include └── trial │ ├── dynamic │ ├── algorithm.hpp │ ├── algorithm │ │ ├── count.hpp │ │ ├── erase.hpp │ │ ├── find.hpp │ │ └── visit.hpp │ ├── convert.hpp │ ├── convert │ │ ├── boost │ │ │ ├── any.hpp │ │ │ └── optional.hpp │ │ ├── convert.hpp │ │ ├── enum.hpp │ │ └── std │ │ │ ├── map.hpp │ │ │ ├── set.hpp │ │ │ └── vector.hpp │ ├── detail │ │ ├── config.hpp │ │ ├── empty_value.hpp │ │ ├── error.ipp │ │ ├── meta.hpp │ │ ├── small_union.hpp │ │ ├── small_union.ipp │ │ ├── type_traits.hpp │ │ └── variable.ipp │ ├── error.hpp │ ├── functional.hpp │ ├── token.hpp │ ├── variable.hpp │ └── variable_io.hpp │ └── protocol │ ├── bintoken │ ├── detail │ │ ├── decoder.hpp │ │ ├── decoder.ipp │ │ ├── encoder.hpp │ │ ├── encoder.ipp │ │ ├── error.ipp │ │ ├── format.ipp │ │ ├── parse.ipp │ │ ├── reader.ipp │ │ ├── token.ipp │ │ └── writer.ipp │ ├── error.hpp │ ├── format.hpp │ ├── parse.hpp │ ├── reader.hpp │ ├── serialization.hpp │ ├── serialization │ │ ├── array.hpp │ │ ├── boost │ │ │ └── optional.hpp │ │ ├── detail │ │ │ ├── array_load.hpp │ │ │ ├── array_save.hpp │ │ │ ├── iarchive.ipp │ │ │ └── oarchive.ipp │ │ ├── dynamic │ │ │ └── variable.hpp │ │ ├── iarchive.hpp │ │ ├── oarchive.hpp │ │ ├── serialization.hpp │ │ └── std │ │ │ ├── array.hpp │ │ │ ├── map.hpp │ │ │ ├── pair.hpp │ │ │ ├── set.hpp │ │ │ ├── string.hpp │ │ │ └── vector.hpp │ ├── token.hpp │ └── writer.hpp │ ├── buffer │ ├── array.hpp │ ├── base.hpp │ ├── container.hpp │ ├── ostream.hpp │ ├── string.hpp │ └── vector.hpp │ ├── core │ ├── char_traits.hpp │ ├── detail │ │ ├── bit.hpp │ │ ├── config.hpp │ │ ├── cstdfloat.hpp │ │ ├── lightweight_test.hpp │ │ ├── simd.hpp │ │ ├── span.hpp │ │ ├── string_view.hpp │ │ └── type_traits.hpp │ └── serialization │ │ ├── array.hpp │ │ ├── boost │ │ └── optional.hpp │ │ ├── serialization.hpp │ │ └── std │ │ ├── array.hpp │ │ ├── map.hpp │ │ ├── pair.hpp │ │ ├── set.hpp │ │ ├── string.hpp │ │ └── vector.hpp │ ├── json │ ├── chunk_reader.hpp │ ├── detail │ │ ├── chunk_reader.ipp │ │ ├── compact.hpp │ │ ├── decoder.hpp │ │ ├── decoder.ipp │ │ ├── encoder.hpp │ │ ├── encoder.ipp │ │ ├── error.ipp │ │ ├── format.ipp │ │ ├── parse.ipp │ │ ├── reader.ipp │ │ ├── scan.hpp │ │ ├── string_converter.hpp │ │ ├── token.ipp │ │ ├── traits.hpp │ │ ├── traits.ipp │ │ └── writer.ipp │ ├── error.hpp │ ├── format.hpp │ ├── parse.hpp │ ├── partial │ │ └── skip.hpp │ ├── reader.hpp │ ├── serialization.hpp │ ├── serialization │ │ ├── array.hpp │ │ ├── boost │ │ │ └── optional.hpp │ │ ├── detail │ │ │ ├── array_load.hpp │ │ │ ├── array_save.hpp │ │ │ ├── iarchive.ipp │ │ │ └── oarchive.ipp │ │ ├── dynamic │ │ │ └── variable.hpp │ │ ├── iarchive.hpp │ │ ├── oarchive.hpp │ │ ├── serialization.hpp │ │ └── std │ │ │ ├── map.hpp │ │ │ ├── pair.hpp │ │ │ ├── set.hpp │ │ │ ├── string.hpp │ │ │ └── vector.hpp │ ├── token.hpp │ └── writer.hpp │ └── serialization │ └── dynamic │ └── variable.hpp └── test ├── CMakeLists.txt ├── bintoken ├── CMakeLists.txt ├── decoder_suite.cpp ├── encoder_suite.cpp ├── format_suite.cpp ├── iarchive_boost_suite.cpp ├── iarchive_std_suite.cpp ├── iarchive_suite.cpp ├── oarchive_boost_suite.cpp ├── oarchive_std_suite.cpp ├── oarchive_suite.cpp ├── parse_suite.cpp ├── reader_suite.cpp └── writer_suite.cpp ├── buffer ├── CMakeLists.txt ├── container_suite.cpp ├── ostream_suite.cpp ├── string_suite.cpp └── vector_suite.cpp ├── core ├── CMakeLists.txt └── detail │ ├── meta_suite.cpp │ └── small_union_suite.cpp ├── dynamic ├── CMakeLists.txt ├── algorithm │ ├── count_suite.cpp │ ├── erase_suite.cpp │ ├── find_suite.cpp │ └── visit_suite.cpp ├── convert │ ├── boost │ │ ├── any_suite.cpp │ │ └── optional_suite.cpp │ ├── enum_suite.cpp │ └── std │ │ ├── map_suite.cpp │ │ ├── set_suite.cpp │ │ └── vector_suite.cpp ├── std │ ├── accumulate_suite.cpp │ ├── adjacent_find_suite.cpp │ ├── all_of_suite.cpp │ ├── any_of_suite.cpp │ ├── binary_search_suite.cpp │ ├── copy_backward_suite.cpp │ ├── copy_suite.cpp │ ├── count_if_suite.cpp │ ├── count_suite.cpp │ ├── equal_range_suite.cpp │ ├── equal_suite.cpp │ ├── find_if_suite.cpp │ ├── find_suite.cpp │ ├── insert_iterator_suite.cpp │ ├── iota_suite.cpp │ ├── is_partitioned_suite.cpp │ ├── is_sorted_suite.cpp │ ├── lexicographical_compare_suite.cpp │ ├── lower_bound_suite.cpp │ ├── max_element_suite.cpp │ ├── mismatch_suite.cpp │ ├── move_backward_suite.cpp │ ├── move_suite.cpp │ ├── none_of_suite.cpp │ ├── partial_sum_suite.cpp │ ├── partition_point_suite.cpp │ ├── partition_suite.cpp │ ├── remove_suite.cpp │ ├── replace_suite.cpp │ ├── reverse_suite.cpp │ ├── rotate_suite.cpp │ ├── search_suite.cpp │ ├── stable_partition_suite.cpp │ ├── swap_ranges_suite.cpp │ ├── transform_suite.cpp │ ├── unique_suite.cpp │ └── upper_bound_suite.cpp ├── variable_capacity_suite.cpp ├── variable_comparison_suite.cpp ├── variable_concept_suite.cpp ├── variable_io_suite.cpp ├── variable_iterator_suite.cpp ├── variable_modifier_suite.cpp ├── variable_operator_suite.cpp └── variable_suite.cpp └── json ├── CMakeLists.txt ├── chunk_reader_suite.cpp ├── decoder_suite.cpp ├── encoder_suite.cpp ├── format_suite.cpp ├── iarchive_suite.cpp ├── oarchive_suite.cpp ├── parse_suite.cpp ├── reader_suite.cpp ├── seriot_suite.cpp ├── skip_suite.cpp └── writer_suite.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/GoogleBenchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/benchmark/GoogleBenchmark.cmake -------------------------------------------------------------------------------- /benchmark/bintoken/benchmark_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/benchmark/bintoken/benchmark_reader.cpp -------------------------------------------------------------------------------- /benchmark/json/benchmark_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/benchmark/json/benchmark_reader.cpp -------------------------------------------------------------------------------- /benchmark/json/benchmark_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/benchmark/json/benchmark_real.cpp -------------------------------------------------------------------------------- /cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/Jamfile.v2 -------------------------------------------------------------------------------- /doc/core/adapter.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/core/adapter.qbk -------------------------------------------------------------------------------- /doc/core/core.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/core/core.qbk -------------------------------------------------------------------------------- /doc/core/serialization.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/core/serialization.qbk -------------------------------------------------------------------------------- /doc/dynamic/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/Jamfile.v2 -------------------------------------------------------------------------------- /doc/dynamic/algorithm.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/algorithm.qbk -------------------------------------------------------------------------------- /doc/dynamic/concept.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/concept.qbk -------------------------------------------------------------------------------- /doc/dynamic/converter.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/converter.qbk -------------------------------------------------------------------------------- /doc/dynamic/dynamic.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/dynamic.qbk -------------------------------------------------------------------------------- /doc/dynamic/function.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/function.qbk -------------------------------------------------------------------------------- /doc/dynamic/guide.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/guide.qbk -------------------------------------------------------------------------------- /doc/dynamic/rationale.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/rationale.qbk -------------------------------------------------------------------------------- /doc/dynamic/tutorial.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/tutorial.qbk -------------------------------------------------------------------------------- /doc/dynamic/type.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/dynamic/type.qbk -------------------------------------------------------------------------------- /doc/json/design.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/design.qbk -------------------------------------------------------------------------------- /doc/json/error.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/error.qbk -------------------------------------------------------------------------------- /doc/json/guide.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/guide.qbk -------------------------------------------------------------------------------- /doc/json/iarchive.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/iarchive.qbk -------------------------------------------------------------------------------- /doc/json/json.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/json.qbk -------------------------------------------------------------------------------- /doc/json/oarchive.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/oarchive.qbk -------------------------------------------------------------------------------- /doc/json/overview.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/overview.qbk -------------------------------------------------------------------------------- /doc/json/reader.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/reader.qbk -------------------------------------------------------------------------------- /doc/json/reference.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/reference.qbk -------------------------------------------------------------------------------- /doc/json/token.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/token.qbk -------------------------------------------------------------------------------- /doc/json/tutorial.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/tutorial.qbk -------------------------------------------------------------------------------- /doc/json/writer.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/json/writer.qbk -------------------------------------------------------------------------------- /doc/protocol.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/doc/protocol.qbk -------------------------------------------------------------------------------- /example/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/CMakeLists.txt -------------------------------------------------------------------------------- /example/json/chunked_push_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/chunked_push_parser/CMakeLists.txt -------------------------------------------------------------------------------- /example/json/chunked_push_parser/chunked_push_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/chunked_push_parser/chunked_push_parser.hpp -------------------------------------------------------------------------------- /example/json/chunked_push_parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/chunked_push_parser/main.cpp -------------------------------------------------------------------------------- /example/json/pretty_printer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/pretty_printer/CMakeLists.txt -------------------------------------------------------------------------------- /example/json/pretty_printer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/pretty_printer/main.cpp -------------------------------------------------------------------------------- /example/json/pretty_printer/pretty_printer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/pretty_printer/pretty_printer.hpp -------------------------------------------------------------------------------- /example/json/property_tree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/property_tree/CMakeLists.txt -------------------------------------------------------------------------------- /example/json/property_tree/json_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/property_tree/json_parser.hpp -------------------------------------------------------------------------------- /example/json/property_tree/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/property_tree/main.cpp -------------------------------------------------------------------------------- /example/json/property_tree/read_json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/property_tree/read_json_internal.hpp -------------------------------------------------------------------------------- /example/json/property_tree/write_json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/property_tree/write_json_internal.hpp -------------------------------------------------------------------------------- /example/json/push_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/push_parser/CMakeLists.txt -------------------------------------------------------------------------------- /example/json/push_parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/push_parser/main.cpp -------------------------------------------------------------------------------- /example/json/push_parser/push_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/example/json/push_parser/push_parser.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/algorithm.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/algorithm/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/algorithm/count.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/algorithm/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/algorithm/erase.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/algorithm/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/algorithm/find.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/algorithm/visit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/algorithm/visit.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert/boost/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert/boost/any.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert/boost/optional.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert/convert.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert/enum.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert/std/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert/std/map.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert/std/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert/std/set.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/convert/std/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/convert/std/vector.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/config.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/empty_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/empty_value.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/error.ipp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/meta.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/small_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/small_union.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/small_union.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/small_union.ipp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/type_traits.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/detail/variable.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/detail/variable.ipp -------------------------------------------------------------------------------- /include/trial/dynamic/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/error.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/functional.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/token.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/variable.hpp -------------------------------------------------------------------------------- /include/trial/dynamic/variable_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/dynamic/variable_io.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/decoder.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/decoder.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/decoder.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/encoder.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/encoder.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/encoder.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/error.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/format.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/format.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/parse.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/parse.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/reader.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/reader.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/token.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/token.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/detail/writer.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/detail/writer.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/error.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/format.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/parse.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/reader.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/array.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/boost/optional.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/detail/array_load.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/detail/array_load.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/detail/array_save.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/detail/array_save.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/detail/iarchive.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/detail/iarchive.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/detail/oarchive.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/detail/oarchive.ipp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/dynamic/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/dynamic/variable.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/iarchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/iarchive.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/oarchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/oarchive.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/serialization.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/std/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/std/array.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/std/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/std/map.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/std/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/std/pair.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/std/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/std/set.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/std/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/std/string.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/serialization/std/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/serialization/std/vector.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/token.hpp -------------------------------------------------------------------------------- /include/trial/protocol/bintoken/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/bintoken/writer.hpp -------------------------------------------------------------------------------- /include/trial/protocol/buffer/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/buffer/array.hpp -------------------------------------------------------------------------------- /include/trial/protocol/buffer/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/buffer/base.hpp -------------------------------------------------------------------------------- /include/trial/protocol/buffer/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/buffer/container.hpp -------------------------------------------------------------------------------- /include/trial/protocol/buffer/ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/buffer/ostream.hpp -------------------------------------------------------------------------------- /include/trial/protocol/buffer/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/buffer/string.hpp -------------------------------------------------------------------------------- /include/trial/protocol/buffer/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/buffer/vector.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/char_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/char_traits.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/bit.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/config.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/cstdfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/cstdfloat.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/lightweight_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/lightweight_test.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/simd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/simd.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/span.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/string_view.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/detail/type_traits.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/array.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/boost/optional.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/serialization.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/std/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/std/array.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/std/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/std/map.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/std/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/std/pair.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/std/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/std/set.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/std/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/std/string.hpp -------------------------------------------------------------------------------- /include/trial/protocol/core/serialization/std/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/core/serialization/std/vector.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/chunk_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/chunk_reader.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/chunk_reader.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/chunk_reader.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/compact.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/compact.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/decoder.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/decoder.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/decoder.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/encoder.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/encoder.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/encoder.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/error.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/format.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/format.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/parse.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/parse.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/reader.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/reader.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/scan.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/string_converter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/string_converter.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/token.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/token.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/traits.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/traits.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/traits.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/detail/writer.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/detail/writer.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/error.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/format.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/parse.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/partial/skip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/partial/skip.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/reader.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/array.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/boost/optional.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/detail/array_load.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/detail/array_load.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/detail/array_save.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/detail/array_save.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/detail/iarchive.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/detail/iarchive.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/detail/oarchive.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/detail/oarchive.ipp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/dynamic/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/dynamic/variable.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/iarchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/iarchive.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/oarchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/oarchive.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/serialization.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/std/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/std/map.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/std/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/std/pair.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/std/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/std/set.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/std/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/std/string.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/serialization/std/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/serialization/std/vector.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/token.hpp -------------------------------------------------------------------------------- /include/trial/protocol/json/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/json/writer.hpp -------------------------------------------------------------------------------- /include/trial/protocol/serialization/dynamic/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/include/trial/protocol/serialization/dynamic/variable.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/bintoken/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/CMakeLists.txt -------------------------------------------------------------------------------- /test/bintoken/decoder_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/decoder_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/encoder_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/encoder_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/format_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/format_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/iarchive_boost_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/iarchive_boost_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/iarchive_std_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/iarchive_std_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/iarchive_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/iarchive_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/oarchive_boost_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/oarchive_boost_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/oarchive_std_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/oarchive_std_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/oarchive_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/oarchive_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/parse_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/parse_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/reader_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/reader_suite.cpp -------------------------------------------------------------------------------- /test/bintoken/writer_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/bintoken/writer_suite.cpp -------------------------------------------------------------------------------- /test/buffer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/buffer/CMakeLists.txt -------------------------------------------------------------------------------- /test/buffer/container_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/buffer/container_suite.cpp -------------------------------------------------------------------------------- /test/buffer/ostream_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/buffer/ostream_suite.cpp -------------------------------------------------------------------------------- /test/buffer/string_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/buffer/string_suite.cpp -------------------------------------------------------------------------------- /test/buffer/vector_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/buffer/vector_suite.cpp -------------------------------------------------------------------------------- /test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /test/core/detail/meta_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/core/detail/meta_suite.cpp -------------------------------------------------------------------------------- /test/core/detail/small_union_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/core/detail/small_union_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/CMakeLists.txt -------------------------------------------------------------------------------- /test/dynamic/algorithm/count_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/algorithm/count_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/algorithm/erase_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/algorithm/erase_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/algorithm/find_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/algorithm/find_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/algorithm/visit_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/algorithm/visit_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/convert/boost/any_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/convert/boost/any_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/convert/boost/optional_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/convert/boost/optional_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/convert/enum_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/convert/enum_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/convert/std/map_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/convert/std/map_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/convert/std/set_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/convert/std/set_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/convert/std/vector_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/convert/std/vector_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/accumulate_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/accumulate_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/adjacent_find_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/adjacent_find_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/all_of_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/all_of_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/any_of_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/any_of_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/binary_search_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/binary_search_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/copy_backward_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/copy_backward_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/copy_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/copy_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/count_if_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/count_if_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/count_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/count_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/equal_range_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/equal_range_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/equal_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/equal_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/find_if_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/find_if_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/find_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/find_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/insert_iterator_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/insert_iterator_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/iota_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/iota_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/is_partitioned_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/is_partitioned_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/is_sorted_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/is_sorted_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/lexicographical_compare_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/lexicographical_compare_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/lower_bound_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/lower_bound_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/max_element_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/max_element_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/mismatch_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/mismatch_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/move_backward_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/move_backward_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/move_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/move_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/none_of_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/none_of_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/partial_sum_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/partial_sum_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/partition_point_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/partition_point_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/partition_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/partition_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/remove_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/remove_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/replace_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/replace_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/reverse_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/reverse_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/rotate_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/rotate_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/search_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/search_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/stable_partition_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/stable_partition_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/swap_ranges_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/swap_ranges_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/transform_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/transform_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/unique_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/unique_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/std/upper_bound_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/std/upper_bound_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_capacity_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_capacity_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_comparison_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_comparison_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_concept_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_concept_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_io_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_io_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_iterator_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_iterator_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_modifier_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_modifier_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_operator_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_operator_suite.cpp -------------------------------------------------------------------------------- /test/dynamic/variable_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/dynamic/variable_suite.cpp -------------------------------------------------------------------------------- /test/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/CMakeLists.txt -------------------------------------------------------------------------------- /test/json/chunk_reader_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/chunk_reader_suite.cpp -------------------------------------------------------------------------------- /test/json/decoder_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/decoder_suite.cpp -------------------------------------------------------------------------------- /test/json/encoder_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/encoder_suite.cpp -------------------------------------------------------------------------------- /test/json/format_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/format_suite.cpp -------------------------------------------------------------------------------- /test/json/iarchive_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/iarchive_suite.cpp -------------------------------------------------------------------------------- /test/json/oarchive_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/oarchive_suite.cpp -------------------------------------------------------------------------------- /test/json/parse_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/parse_suite.cpp -------------------------------------------------------------------------------- /test/json/reader_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/reader_suite.cpp -------------------------------------------------------------------------------- /test/json/seriot_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/seriot_suite.cpp -------------------------------------------------------------------------------- /test/json/skip_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/skip_suite.cpp -------------------------------------------------------------------------------- /test/json/writer_suite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breese/trial.protocol/HEAD/test/json/writer_suite.cpp --------------------------------------------------------------------------------