diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/boost/libs/leaf/README.md | |
parent | Initial commit. (diff) | |
download | ceph-upstream/18.2.2.tar.xz ceph-upstream/18.2.2.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/leaf/README.md')
-rw-r--r-- | src/boost/libs/leaf/README.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/boost/libs/leaf/README.md b/src/boost/libs/leaf/README.md new file mode 100644 index 000000000..a8241876e --- /dev/null +++ b/src/boost/libs/leaf/README.md @@ -0,0 +1,31 @@ +# LEAF + +> A lightweight error handling library for C++11. + +## Documentation + +https://boostorg.github.io/leaf/ + +## Features + +* Portable single-header format, no dependencies. +* Tiny code size when configured for embedded development. +* No dynamic memory allocations, even with very large payloads. +* Deterministic unbiased efficiency on the "happy" path and the "sad" path. +* Error objects are handled in constant time, independent of call stack depth. +* Can be used with or without exception handling. + +## Support + +* [cpplang on Slack](https://Cpplang.slack.com) (use the `#boost` channel) +* [Boost Users Mailing List](https://lists.boost.org/mailman/listinfo.cgi/boost-users) +* [Boost Developers Mailing List](https://lists.boost.org/mailman/listinfo.cgi/boost) + +## Distribution + +Besides GitHub, there are two other distribution channels: + +* LEAF is included in official [Boost](https://www.boost.org/) releases, starting with Boost 1.75. +* For maximum portability, the library is also available in single-header format: simply download [leaf.hpp](https://boostorg.github.io/leaf/leaf.hpp) (direct download link). + +Copyright 2018-2022 Emil Dotchevski and Reverge Studios, Inc. Distributed under the http://www.boost.org/LICENSE_1_0.txt[Boost Software License, Version 1.0]. |