├── .gitignore ├── CMakeLists.txt ├── CMakeModules ├── BoostUtils.cmake ├── FindCheck.cmake └── XslTransform.cmake ├── README.md ├── doc ├── CMakeLists.txt ├── boostbook_catalog.xml ├── html │ ├── boostbook.css │ ├── docutils.css │ ├── images │ │ ├── alert.png │ │ ├── blank.png │ │ ├── callouts │ │ │ ├── 1.png │ │ │ ├── 1.svg │ │ │ ├── 10.png │ │ │ ├── 10.svg │ │ │ ├── 11.png │ │ │ ├── 11.svg │ │ │ ├── 12.png │ │ │ ├── 12.svg │ │ │ ├── 13.png │ │ │ ├── 13.svg │ │ │ ├── 14.png │ │ │ ├── 14.svg │ │ │ ├── 15.png │ │ │ ├── 15.svg │ │ │ ├── 16.svg │ │ │ ├── 17.svg │ │ │ ├── 18.svg │ │ │ ├── 19.svg │ │ │ ├── 2.png │ │ │ ├── 2.svg │ │ │ ├── 20.svg │ │ │ ├── 21.svg │ │ │ ├── 22.svg │ │ │ ├── 23.svg │ │ │ ├── 24.svg │ │ │ ├── 25.svg │ │ │ ├── 26.svg │ │ │ ├── 27.svg │ │ │ ├── 28.svg │ │ │ ├── 29.svg │ │ │ ├── 3.png │ │ │ ├── 3.svg │ │ │ ├── 30.svg │ │ │ ├── 4.png │ │ │ ├── 4.svg │ │ │ ├── 5.png │ │ │ ├── 5.svg │ │ │ ├── 6.png │ │ │ ├── 6.svg │ │ │ ├── 7.png │ │ │ ├── 7.svg │ │ │ ├── 8.png │ │ │ ├── 8.svg │ │ │ ├── 9.png │ │ │ └── 9.svg │ │ ├── caution.png │ │ ├── caution.svg │ │ ├── draft.png │ │ ├── home.png │ │ ├── home.svg │ │ ├── important.png │ │ ├── important.svg │ │ ├── next.png │ │ ├── next.svg │ │ ├── next_disabled.png │ │ ├── note.png │ │ ├── note.svg │ │ ├── prev.png │ │ ├── prev.svg │ │ ├── prev_disabled.png │ │ ├── smiley.png │ │ ├── tip.png │ │ ├── tip.svg │ │ ├── toc-blank.png │ │ ├── toc-minus.png │ │ ├── toc-plus.png │ │ ├── up.png │ │ ├── up.svg │ │ ├── up_disabled.png │ │ ├── warning.png │ │ └── warning.svg │ ├── minimal.css │ └── reference.css ├── noncopyable_dox.txt ├── quickref.xml ├── reference.dox ├── reference.xsl ├── requirements │ ├── CancellableQueue.qbk │ └── SimpleQueue.qbk ├── std_exception_dox.txt └── yamail.qbk ├── include ├── boost │ ├── tti │ │ ├── detail │ │ │ ├── dcomp_mem_fun.hpp │ │ │ ├── ddata.hpp │ │ │ ├── ddeftype.hpp │ │ │ ├── dftclass.hpp │ │ │ ├── dfunction.hpp │ │ │ ├── dlambda.hpp │ │ │ ├── dmem_data.hpp │ │ │ ├── dmem_fun.hpp │ │ │ ├── dmem_type.hpp │ │ │ ├── dmetafunc.hpp │ │ │ ├── dnotype.hpp │ │ │ ├── dnullptr.hpp │ │ │ ├── dplaceholder.hpp │ │ │ ├── dptmf.hpp │ │ │ ├── dstatic_mem_data.hpp │ │ │ ├── dstatic_mem_fun.hpp │ │ │ ├── dtclass.hpp │ │ │ ├── dtemplate.hpp │ │ │ ├── dtemplate_params.hpp │ │ │ ├── dtfunction.hpp │ │ │ ├── dtype.hpp │ │ │ └── dvm_template_params.hpp │ │ ├── gen │ │ │ ├── has_data_gen.hpp │ │ │ ├── has_function_gen.hpp │ │ │ ├── has_member_data_gen.hpp │ │ │ ├── has_member_function_gen.hpp │ │ │ ├── has_static_member_data_gen.hpp │ │ │ ├── has_static_member_function_gen.hpp │ │ │ ├── has_template_gen.hpp │ │ │ ├── has_type_gen.hpp │ │ │ ├── member_type_gen.hpp │ │ │ └── namespace_gen.hpp │ │ ├── has_data.hpp │ │ ├── has_function.hpp │ │ ├── has_member_data.hpp │ │ ├── has_member_function.hpp │ │ ├── has_static_member_data.hpp │ │ ├── has_static_member_function.hpp │ │ ├── has_template.hpp │ │ ├── has_type.hpp │ │ ├── member_type.hpp │ │ └── tti.hpp │ └── type_erasure │ │ ├── any.hpp │ │ ├── any_cast.hpp │ │ ├── binding.hpp │ │ ├── binding_of.hpp │ │ ├── builtin.hpp │ │ ├── call.hpp │ │ ├── callable.hpp │ │ ├── check_match.hpp │ │ ├── concept_interface.hpp │ │ ├── concept_of.hpp │ │ ├── config.hpp │ │ ├── constructible.hpp │ │ ├── deduced.hpp │ │ ├── derived.hpp │ │ ├── detail │ │ ├── access.hpp │ │ ├── adapt_to_vtable.hpp │ │ ├── any_base.hpp │ │ ├── check_call.hpp │ │ ├── check_map.hpp │ │ ├── const.hpp │ │ ├── construct.hpp │ │ ├── extract_concept.hpp │ │ ├── get_placeholders.hpp │ │ ├── get_signature.hpp │ │ ├── instantiate.hpp │ │ ├── macro.hpp │ │ ├── normalize.hpp │ │ ├── normalize_deduced.hpp │ │ ├── null.hpp │ │ ├── rebind_placeholders.hpp │ │ ├── storage.hpp │ │ └── vtable.hpp │ │ ├── exception.hpp │ │ ├── free.hpp │ │ ├── is_empty.hpp │ │ ├── is_placeholder.hpp │ │ ├── is_subconcept.hpp │ │ ├── iterator.hpp │ │ ├── member.hpp │ │ ├── operators.hpp │ │ ├── param.hpp │ │ ├── placeholder.hpp │ │ ├── placeholder_of.hpp │ │ ├── rebind_any.hpp │ │ ├── relaxed.hpp │ │ ├── require_match.hpp │ │ ├── same_type.hpp │ │ ├── static_binding.hpp │ │ ├── tuple.hpp │ │ └── typeid_of.hpp └── yamail │ ├── all.h │ ├── compat.h │ ├── compat │ ├── basics.h │ ├── bind.h │ ├── chrono.h │ ├── chrono_io.h │ ├── config.h │ ├── exception.h │ ├── function.h │ ├── make_unique.h │ ├── move.h │ ├── mutex.h │ ├── namespace.h │ ├── optional.h │ ├── ratio_io.h │ ├── shared_ptr.h │ ├── static_assert.h │ ├── system.h │ ├── thread.h │ ├── type_traits.h │ ├── unordered.h │ └── variant.h │ ├── concurrency.h │ ├── concurrency │ ├── async.h │ ├── coroutine.h │ ├── coroutine │ │ ├── all.h │ │ ├── attributes.h │ │ ├── clock_type.h │ │ ├── coroutine.h │ │ ├── coroutine_manager.h │ │ ├── coroutine_manager.inl │ │ ├── detail │ │ │ ├── coroutine_base.h │ │ │ ├── css.h │ │ │ ├── fifo.h │ │ │ ├── flags.h │ │ │ ├── scheduler.h │ │ │ ├── spawn.h │ │ │ ├── waiting_queue.h │ │ │ ├── worker_coroutine.h │ │ │ └── yield.h │ │ ├── error_code.h │ │ ├── namespace.h │ │ ├── round_robin.h │ │ ├── spawn.h │ │ └── yield.h │ ├── future.h │ ├── future │ │ ├── ChangeLog.txt │ │ ├── deprecated_cancel.html │ │ ├── future-doc.html │ │ ├── future.h │ │ ├── future_detail.h │ │ ├── future_error.h │ │ ├── future_exceptions.h │ │ ├── future_group.h │ │ └── future_stream.h │ ├── namespace.h │ └── spinlock.h │ ├── config.h │ ├── cplusplus.h │ ├── data.h │ ├── data │ ├── config │ │ ├── ast.h │ │ ├── ast_io.h │ │ ├── comments_parser.h │ │ ├── config_parser.h │ │ ├── detail │ │ │ ├── ast_cache_fwd.h │ │ │ ├── boost_fs_handler.h │ │ │ ├── file_cache.h │ │ │ ├── file_cache_fwd.h │ │ │ ├── fs_handler.h │ │ │ ├── importer.h │ │ │ ├── include_cache.h │ │ │ ├── include_dummy.h │ │ │ ├── include_opener.h │ │ │ ├── line_forward_iterator.h │ │ │ ├── line_iterator_fixed.h │ │ │ ├── normalize_path.h │ │ │ ├── parse.h │ │ │ └── parse_file.h │ │ ├── error_wrapper.h │ │ ├── grammar.h │ │ ├── namespace.h │ │ ├── parse_file.h │ │ ├── parse_iterator.h │ │ ├── parse_stream.h │ │ ├── parser.h │ │ ├── path_traits.h │ │ ├── paths_type.h │ │ └── utf8_parser.h │ ├── namespace.h │ ├── select_map.h │ └── zerocopy │ │ ├── fragment.h │ │ ├── iterator.h │ │ ├── namespace.h │ │ ├── segment.h │ │ └── streambuf.h │ ├── error.h │ ├── error │ └── error.h │ ├── iterator.h │ ├── iterator │ ├── boundary_iterator.h │ ├── codecvt_iterator.h │ ├── escape_iterator.h │ └── namespace.h │ ├── log.h │ ├── log │ ├── compat.h │ ├── detail │ │ └── process_name.h │ ├── log.h │ ├── log_rotate.h │ ├── namespace.h │ ├── rotate_text_file_backend.h │ ├── tskv_backend.h │ ├── typed.h │ ├── typed_backend.h │ ├── typed_backend_attr.h │ ├── typed_predefined.h │ ├── typed_xml.h │ └── uniq_task_log_attr.h │ ├── memory.h │ ├── memory │ ├── composite_limiter_factory.h │ ├── limited_allocator.h │ ├── limiters.h │ ├── limiters_repository.h │ └── namespace.h │ ├── namespace.h │ ├── traits.h │ ├── traits │ ├── disable_if_same_or_derived.h │ ├── enable_if_convertible.h │ ├── enable_if_value_or_ref.h │ ├── enable_type.h │ ├── is_complete.h │ └── namespace.h │ ├── utility.h │ ├── utility │ ├── apply.h │ ├── capture.h │ ├── copy_test.h │ ├── expected.h │ ├── in.h │ ├── list_of.h │ ├── namespace.h │ ├── rref.h │ ├── storage.h │ ├── update_iterator.h │ └── variant.h │ └── version.h ├── libyamail.spec ├── src ├── log │ ├── CMakeLists.txt │ ├── datetime_formatter.h │ ├── log-144.h │ ├── log-146.h │ ├── log-154.h │ ├── log.cc │ ├── log_rotate.cc │ ├── rotate_text_file_backend.cc │ └── uniq_task_log_attr.cc └── memory │ ├── composite_limiter_factory.cc │ ├── limiters.cc │ └── limiters_repository.cc └── tests ├── CMakeLists.txt ├── concurrency ├── CMakeLists.txt └── future │ ├── CMakeLists.txt │ └── future_group.cc ├── data ├── CMakeLists.txt ├── config │ ├── CMakeLists.txt │ ├── include_opener-2.cc │ ├── include_opener.cc │ ├── t │ └── t.cc ├── select_map ├── select_map.cc └── zerocopy │ ├── .gitignore │ ├── CMakeLists.txt │ ├── allocator_mock.h │ ├── fragment-test.cc │ ├── iterator-test.cc │ ├── segment-test.cc │ └── streambuf-test.cc ├── dummy-test.cc ├── main.cc └── memory ├── CMakeLists.txt ├── limited_allocator.cc └── limiters_repository.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/BoostUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/CMakeModules/BoostUtils.cmake -------------------------------------------------------------------------------- /CMakeModules/FindCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/CMakeModules/FindCheck.cmake -------------------------------------------------------------------------------- /CMakeModules/XslTransform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/CMakeModules/XslTransform.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/README.md -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/boostbook_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/boostbook_catalog.xml -------------------------------------------------------------------------------- /doc/html/boostbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/boostbook.css -------------------------------------------------------------------------------- /doc/html/docutils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/docutils.css -------------------------------------------------------------------------------- /doc/html/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/alert.png -------------------------------------------------------------------------------- /doc/html/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/blank.png -------------------------------------------------------------------------------- /doc/html/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/1.png -------------------------------------------------------------------------------- /doc/html/images/callouts/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/1.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/10.png -------------------------------------------------------------------------------- /doc/html/images/callouts/10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/10.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/11.png -------------------------------------------------------------------------------- /doc/html/images/callouts/11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/11.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/12.png -------------------------------------------------------------------------------- /doc/html/images/callouts/12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/12.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/13.png -------------------------------------------------------------------------------- /doc/html/images/callouts/13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/13.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/14.png -------------------------------------------------------------------------------- /doc/html/images/callouts/14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/14.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/15.png -------------------------------------------------------------------------------- /doc/html/images/callouts/15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/15.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/16.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/17.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/18.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/19.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/2.png -------------------------------------------------------------------------------- /doc/html/images/callouts/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/2.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/20.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/21.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/22.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/23.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/24.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/25.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/26.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/27.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/28.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/29.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/3.png -------------------------------------------------------------------------------- /doc/html/images/callouts/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/3.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/30.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/4.png -------------------------------------------------------------------------------- /doc/html/images/callouts/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/4.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/5.png -------------------------------------------------------------------------------- /doc/html/images/callouts/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/5.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/6.png -------------------------------------------------------------------------------- /doc/html/images/callouts/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/6.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/7.png -------------------------------------------------------------------------------- /doc/html/images/callouts/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/7.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/8.png -------------------------------------------------------------------------------- /doc/html/images/callouts/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/8.svg -------------------------------------------------------------------------------- /doc/html/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/9.png -------------------------------------------------------------------------------- /doc/html/images/callouts/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/callouts/9.svg -------------------------------------------------------------------------------- /doc/html/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/caution.png -------------------------------------------------------------------------------- /doc/html/images/caution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/caution.svg -------------------------------------------------------------------------------- /doc/html/images/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/draft.png -------------------------------------------------------------------------------- /doc/html/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/home.png -------------------------------------------------------------------------------- /doc/html/images/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/home.svg -------------------------------------------------------------------------------- /doc/html/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/important.png -------------------------------------------------------------------------------- /doc/html/images/important.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/important.svg -------------------------------------------------------------------------------- /doc/html/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/next.png -------------------------------------------------------------------------------- /doc/html/images/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/next.svg -------------------------------------------------------------------------------- /doc/html/images/next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/next_disabled.png -------------------------------------------------------------------------------- /doc/html/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/note.png -------------------------------------------------------------------------------- /doc/html/images/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/note.svg -------------------------------------------------------------------------------- /doc/html/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/prev.png -------------------------------------------------------------------------------- /doc/html/images/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/prev.svg -------------------------------------------------------------------------------- /doc/html/images/prev_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/prev_disabled.png -------------------------------------------------------------------------------- /doc/html/images/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/smiley.png -------------------------------------------------------------------------------- /doc/html/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/tip.png -------------------------------------------------------------------------------- /doc/html/images/tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/tip.svg -------------------------------------------------------------------------------- /doc/html/images/toc-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/toc-blank.png -------------------------------------------------------------------------------- /doc/html/images/toc-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/toc-minus.png -------------------------------------------------------------------------------- /doc/html/images/toc-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/toc-plus.png -------------------------------------------------------------------------------- /doc/html/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/up.png -------------------------------------------------------------------------------- /doc/html/images/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/up.svg -------------------------------------------------------------------------------- /doc/html/images/up_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/up_disabled.png -------------------------------------------------------------------------------- /doc/html/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/warning.png -------------------------------------------------------------------------------- /doc/html/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/images/warning.svg -------------------------------------------------------------------------------- /doc/html/minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/minimal.css -------------------------------------------------------------------------------- /doc/html/reference.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/html/reference.css -------------------------------------------------------------------------------- /doc/noncopyable_dox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/noncopyable_dox.txt -------------------------------------------------------------------------------- /doc/quickref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/quickref.xml -------------------------------------------------------------------------------- /doc/reference.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/reference.dox -------------------------------------------------------------------------------- /doc/reference.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/reference.xsl -------------------------------------------------------------------------------- /doc/requirements/CancellableQueue.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/requirements/CancellableQueue.qbk -------------------------------------------------------------------------------- /doc/requirements/SimpleQueue.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/requirements/SimpleQueue.qbk -------------------------------------------------------------------------------- /doc/std_exception_dox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/std_exception_dox.txt -------------------------------------------------------------------------------- /doc/yamail.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/doc/yamail.qbk -------------------------------------------------------------------------------- /include/boost/tti/detail/dcomp_mem_fun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dcomp_mem_fun.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/ddata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/ddata.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/ddeftype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/ddeftype.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dftclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dftclass.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dfunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dfunction.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dlambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dlambda.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dmem_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dmem_data.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dmem_fun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dmem_fun.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dmem_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dmem_type.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dmetafunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dmetafunc.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dnotype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dnotype.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dnullptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dnullptr.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dplaceholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dplaceholder.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dptmf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dptmf.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dstatic_mem_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dstatic_mem_data.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dstatic_mem_fun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dstatic_mem_fun.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dtclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dtclass.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dtemplate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dtemplate.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dtemplate_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dtemplate_params.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dtfunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dtfunction.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dtype.hpp -------------------------------------------------------------------------------- /include/boost/tti/detail/dvm_template_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/detail/dvm_template_params.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_data_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_data_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_function_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_function_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_member_data_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_member_data_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_member_function_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_member_function_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_static_member_data_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_static_member_data_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_static_member_function_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_static_member_function_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_template_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_template_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/has_type_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/has_type_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/member_type_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/member_type_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/gen/namespace_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/gen/namespace_gen.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_data.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_function.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_member_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_member_data.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_member_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_member_function.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_static_member_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_static_member_data.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_static_member_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_static_member_function.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_template.hpp -------------------------------------------------------------------------------- /include/boost/tti/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/has_type.hpp -------------------------------------------------------------------------------- /include/boost/tti/member_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/member_type.hpp -------------------------------------------------------------------------------- /include/boost/tti/tti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/tti/tti.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/any.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/any_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/any_cast.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/binding.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/binding_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/binding_of.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/builtin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/builtin.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/call.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/callable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/callable.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/check_match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/check_match.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/concept_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/concept_interface.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/concept_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/concept_of.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/config.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/constructible.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/deduced.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/deduced.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/derived.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/derived.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/access.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/adapt_to_vtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/adapt_to_vtable.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/any_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/any_base.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/check_call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/check_call.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/check_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/check_map.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/const.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/construct.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/extract_concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/extract_concept.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/get_placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/get_placeholders.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/get_signature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/get_signature.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/instantiate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/instantiate.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/macro.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/normalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/normalize.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/normalize_deduced.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/normalize_deduced.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/null.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/rebind_placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/rebind_placeholders.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/storage.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/detail/vtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/detail/vtable.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/exception.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/free.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/free.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/is_empty.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/is_placeholder.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/is_subconcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/is_subconcept.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/iterator.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/member.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/operators.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/param.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/placeholder.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/placeholder_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/placeholder_of.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/rebind_any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/rebind_any.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/relaxed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/relaxed.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/require_match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/require_match.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/same_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/same_type.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/static_binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/static_binding.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/tuple.hpp -------------------------------------------------------------------------------- /include/boost/type_erasure/typeid_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/boost/type_erasure/typeid_of.hpp -------------------------------------------------------------------------------- /include/yamail/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/all.h -------------------------------------------------------------------------------- /include/yamail/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat.h -------------------------------------------------------------------------------- /include/yamail/compat/basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/basics.h -------------------------------------------------------------------------------- /include/yamail/compat/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/bind.h -------------------------------------------------------------------------------- /include/yamail/compat/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/chrono.h -------------------------------------------------------------------------------- /include/yamail/compat/chrono_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/chrono_io.h -------------------------------------------------------------------------------- /include/yamail/compat/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/config.h -------------------------------------------------------------------------------- /include/yamail/compat/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/exception.h -------------------------------------------------------------------------------- /include/yamail/compat/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/function.h -------------------------------------------------------------------------------- /include/yamail/compat/make_unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/make_unique.h -------------------------------------------------------------------------------- /include/yamail/compat/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/move.h -------------------------------------------------------------------------------- /include/yamail/compat/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/mutex.h -------------------------------------------------------------------------------- /include/yamail/compat/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/namespace.h -------------------------------------------------------------------------------- /include/yamail/compat/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/optional.h -------------------------------------------------------------------------------- /include/yamail/compat/ratio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/ratio_io.h -------------------------------------------------------------------------------- /include/yamail/compat/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/shared_ptr.h -------------------------------------------------------------------------------- /include/yamail/compat/static_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/static_assert.h -------------------------------------------------------------------------------- /include/yamail/compat/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/system.h -------------------------------------------------------------------------------- /include/yamail/compat/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/thread.h -------------------------------------------------------------------------------- /include/yamail/compat/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/type_traits.h -------------------------------------------------------------------------------- /include/yamail/compat/unordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/unordered.h -------------------------------------------------------------------------------- /include/yamail/compat/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/compat/variant.h -------------------------------------------------------------------------------- /include/yamail/concurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency.h -------------------------------------------------------------------------------- /include/yamail/concurrency/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/async.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/all.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/attributes.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/clock_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/clock_type.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/coroutine.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/coroutine_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/coroutine_manager.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/coroutine_manager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/coroutine_manager.inl -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/coroutine_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/coroutine_base.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/css.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/fifo.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/flags.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/scheduler.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/spawn.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/waiting_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/waiting_queue.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/worker_coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/worker_coroutine.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/detail/yield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/detail/yield.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/error_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/error_code.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/namespace.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/round_robin.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/spawn.h -------------------------------------------------------------------------------- /include/yamail/concurrency/coroutine/yield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/coroutine/yield.h -------------------------------------------------------------------------------- /include/yamail/concurrency/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future.h -------------------------------------------------------------------------------- /include/yamail/concurrency/future/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/ChangeLog.txt -------------------------------------------------------------------------------- /include/yamail/concurrency/future/deprecated_cancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/deprecated_cancel.html -------------------------------------------------------------------------------- /include/yamail/concurrency/future/future-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/future-doc.html -------------------------------------------------------------------------------- /include/yamail/concurrency/future/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/future.h -------------------------------------------------------------------------------- /include/yamail/concurrency/future/future_detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/future_detail.h -------------------------------------------------------------------------------- /include/yamail/concurrency/future/future_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/future_error.h -------------------------------------------------------------------------------- /include/yamail/concurrency/future/future_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/future_exceptions.h -------------------------------------------------------------------------------- /include/yamail/concurrency/future/future_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/future_group.h -------------------------------------------------------------------------------- /include/yamail/concurrency/future/future_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/future/future_stream.h -------------------------------------------------------------------------------- /include/yamail/concurrency/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/namespace.h -------------------------------------------------------------------------------- /include/yamail/concurrency/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/concurrency/spinlock.h -------------------------------------------------------------------------------- /include/yamail/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/config.h -------------------------------------------------------------------------------- /include/yamail/cplusplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/cplusplus.h -------------------------------------------------------------------------------- /include/yamail/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data.h -------------------------------------------------------------------------------- /include/yamail/data/config/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/ast.h -------------------------------------------------------------------------------- /include/yamail/data/config/ast_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/ast_io.h -------------------------------------------------------------------------------- /include/yamail/data/config/comments_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/comments_parser.h -------------------------------------------------------------------------------- /include/yamail/data/config/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/config_parser.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/ast_cache_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/ast_cache_fwd.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/boost_fs_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/boost_fs_handler.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/file_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/file_cache.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/file_cache_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/file_cache_fwd.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/fs_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/fs_handler.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/importer.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/include_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/include_cache.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/include_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/include_dummy.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/include_opener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/include_opener.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/line_forward_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/line_forward_iterator.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/line_iterator_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/line_iterator_fixed.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/normalize_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/normalize_path.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/parse.h -------------------------------------------------------------------------------- /include/yamail/data/config/detail/parse_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/detail/parse_file.h -------------------------------------------------------------------------------- /include/yamail/data/config/error_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/error_wrapper.h -------------------------------------------------------------------------------- /include/yamail/data/config/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/grammar.h -------------------------------------------------------------------------------- /include/yamail/data/config/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/namespace.h -------------------------------------------------------------------------------- /include/yamail/data/config/parse_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/parse_file.h -------------------------------------------------------------------------------- /include/yamail/data/config/parse_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/parse_iterator.h -------------------------------------------------------------------------------- /include/yamail/data/config/parse_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/parse_stream.h -------------------------------------------------------------------------------- /include/yamail/data/config/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/parser.h -------------------------------------------------------------------------------- /include/yamail/data/config/path_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/path_traits.h -------------------------------------------------------------------------------- /include/yamail/data/config/paths_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/paths_type.h -------------------------------------------------------------------------------- /include/yamail/data/config/utf8_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/config/utf8_parser.h -------------------------------------------------------------------------------- /include/yamail/data/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/namespace.h -------------------------------------------------------------------------------- /include/yamail/data/select_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/select_map.h -------------------------------------------------------------------------------- /include/yamail/data/zerocopy/fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/zerocopy/fragment.h -------------------------------------------------------------------------------- /include/yamail/data/zerocopy/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/zerocopy/iterator.h -------------------------------------------------------------------------------- /include/yamail/data/zerocopy/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/zerocopy/namespace.h -------------------------------------------------------------------------------- /include/yamail/data/zerocopy/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/zerocopy/segment.h -------------------------------------------------------------------------------- /include/yamail/data/zerocopy/streambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/data/zerocopy/streambuf.h -------------------------------------------------------------------------------- /include/yamail/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/error.h -------------------------------------------------------------------------------- /include/yamail/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/error/error.h -------------------------------------------------------------------------------- /include/yamail/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/iterator.h -------------------------------------------------------------------------------- /include/yamail/iterator/boundary_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/iterator/boundary_iterator.h -------------------------------------------------------------------------------- /include/yamail/iterator/codecvt_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/iterator/codecvt_iterator.h -------------------------------------------------------------------------------- /include/yamail/iterator/escape_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/iterator/escape_iterator.h -------------------------------------------------------------------------------- /include/yamail/iterator/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/iterator/namespace.h -------------------------------------------------------------------------------- /include/yamail/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log.h -------------------------------------------------------------------------------- /include/yamail/log/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/compat.h -------------------------------------------------------------------------------- /include/yamail/log/detail/process_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/detail/process_name.h -------------------------------------------------------------------------------- /include/yamail/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/log.h -------------------------------------------------------------------------------- /include/yamail/log/log_rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/log_rotate.h -------------------------------------------------------------------------------- /include/yamail/log/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/namespace.h -------------------------------------------------------------------------------- /include/yamail/log/rotate_text_file_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/rotate_text_file_backend.h -------------------------------------------------------------------------------- /include/yamail/log/tskv_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/tskv_backend.h -------------------------------------------------------------------------------- /include/yamail/log/typed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/typed.h -------------------------------------------------------------------------------- /include/yamail/log/typed_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/typed_backend.h -------------------------------------------------------------------------------- /include/yamail/log/typed_backend_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/typed_backend_attr.h -------------------------------------------------------------------------------- /include/yamail/log/typed_predefined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/typed_predefined.h -------------------------------------------------------------------------------- /include/yamail/log/typed_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/typed_xml.h -------------------------------------------------------------------------------- /include/yamail/log/uniq_task_log_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/log/uniq_task_log_attr.h -------------------------------------------------------------------------------- /include/yamail/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/memory.h -------------------------------------------------------------------------------- /include/yamail/memory/composite_limiter_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/memory/composite_limiter_factory.h -------------------------------------------------------------------------------- /include/yamail/memory/limited_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/memory/limited_allocator.h -------------------------------------------------------------------------------- /include/yamail/memory/limiters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/memory/limiters.h -------------------------------------------------------------------------------- /include/yamail/memory/limiters_repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/memory/limiters_repository.h -------------------------------------------------------------------------------- /include/yamail/memory/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/memory/namespace.h -------------------------------------------------------------------------------- /include/yamail/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/namespace.h -------------------------------------------------------------------------------- /include/yamail/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/traits.h -------------------------------------------------------------------------------- /include/yamail/traits/disable_if_same_or_derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/traits/disable_if_same_or_derived.h -------------------------------------------------------------------------------- /include/yamail/traits/enable_if_convertible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/traits/enable_if_convertible.h -------------------------------------------------------------------------------- /include/yamail/traits/enable_if_value_or_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/traits/enable_if_value_or_ref.h -------------------------------------------------------------------------------- /include/yamail/traits/enable_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/traits/enable_type.h -------------------------------------------------------------------------------- /include/yamail/traits/is_complete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/traits/is_complete.h -------------------------------------------------------------------------------- /include/yamail/traits/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/traits/namespace.h -------------------------------------------------------------------------------- /include/yamail/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility.h -------------------------------------------------------------------------------- /include/yamail/utility/apply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/apply.h -------------------------------------------------------------------------------- /include/yamail/utility/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/capture.h -------------------------------------------------------------------------------- /include/yamail/utility/copy_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/copy_test.h -------------------------------------------------------------------------------- /include/yamail/utility/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/expected.h -------------------------------------------------------------------------------- /include/yamail/utility/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/in.h -------------------------------------------------------------------------------- /include/yamail/utility/list_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/list_of.h -------------------------------------------------------------------------------- /include/yamail/utility/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/namespace.h -------------------------------------------------------------------------------- /include/yamail/utility/rref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/rref.h -------------------------------------------------------------------------------- /include/yamail/utility/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/storage.h -------------------------------------------------------------------------------- /include/yamail/utility/update_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/update_iterator.h -------------------------------------------------------------------------------- /include/yamail/utility/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/utility/variant.h -------------------------------------------------------------------------------- /include/yamail/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/include/yamail/version.h -------------------------------------------------------------------------------- /libyamail.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/libyamail.spec -------------------------------------------------------------------------------- /src/log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/CMakeLists.txt -------------------------------------------------------------------------------- /src/log/datetime_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/datetime_formatter.h -------------------------------------------------------------------------------- /src/log/log-144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/log-144.h -------------------------------------------------------------------------------- /src/log/log-146.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/log-146.h -------------------------------------------------------------------------------- /src/log/log-154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/log-154.h -------------------------------------------------------------------------------- /src/log/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/log.cc -------------------------------------------------------------------------------- /src/log/log_rotate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/log_rotate.cc -------------------------------------------------------------------------------- /src/log/rotate_text_file_backend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/rotate_text_file_backend.cc -------------------------------------------------------------------------------- /src/log/uniq_task_log_attr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/log/uniq_task_log_attr.cc -------------------------------------------------------------------------------- /src/memory/composite_limiter_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/memory/composite_limiter_factory.cc -------------------------------------------------------------------------------- /src/memory/limiters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/memory/limiters.cc -------------------------------------------------------------------------------- /src/memory/limiters_repository.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/src/memory/limiters_repository.cc -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/concurrency/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(future) 2 | -------------------------------------------------------------------------------- /tests/concurrency/future/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/concurrency/future/CMakeLists.txt -------------------------------------------------------------------------------- /tests/concurrency/future/future_group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/concurrency/future/future_group.cc -------------------------------------------------------------------------------- /tests/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/CMakeLists.txt -------------------------------------------------------------------------------- /tests/data/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/config/CMakeLists.txt -------------------------------------------------------------------------------- /tests/data/config/include_opener-2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/config/include_opener-2.cc -------------------------------------------------------------------------------- /tests/data/config/include_opener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/config/include_opener.cc -------------------------------------------------------------------------------- /tests/data/config/t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/config/t -------------------------------------------------------------------------------- /tests/data/config/t.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/config/t.cc -------------------------------------------------------------------------------- /tests/data/select_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/select_map -------------------------------------------------------------------------------- /tests/data/select_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/select_map.cc -------------------------------------------------------------------------------- /tests/data/zerocopy/.gitignore: -------------------------------------------------------------------------------- 1 | /zerocopy-test 2 | -------------------------------------------------------------------------------- /tests/data/zerocopy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/zerocopy/CMakeLists.txt -------------------------------------------------------------------------------- /tests/data/zerocopy/allocator_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/zerocopy/allocator_mock.h -------------------------------------------------------------------------------- /tests/data/zerocopy/fragment-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/zerocopy/fragment-test.cc -------------------------------------------------------------------------------- /tests/data/zerocopy/iterator-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/zerocopy/iterator-test.cc -------------------------------------------------------------------------------- /tests/data/zerocopy/segment-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/zerocopy/segment-test.cc -------------------------------------------------------------------------------- /tests/data/zerocopy/streambuf-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/data/zerocopy/streambuf-test.cc -------------------------------------------------------------------------------- /tests/dummy-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/dummy-test.cc -------------------------------------------------------------------------------- /tests/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/main.cc -------------------------------------------------------------------------------- /tests/memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/memory/CMakeLists.txt -------------------------------------------------------------------------------- /tests/memory/limited_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/memory/limited_allocator.cc -------------------------------------------------------------------------------- /tests/memory/limiters_repository.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex/yamail/HEAD/tests/memory/limiters_repository.cc --------------------------------------------------------------------------------