libs/http/src/detail/buffer_utils.hpp
100.0% Lines (2/2)
-% Functions (0/1)
-% Branches (0/0)
libs/http/src/detail/buffer_utils.hpp
| Line | Hits | Source Code |
|---|---|---|
| 1 | // | |
| 2 | // Copyright (c) 2025 Mohammad Nejati | |
| 3 | // | |
| 4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying | |
| 5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
| 6 | // | |
| 7 | // Official repository: https://github.com/cppalliance/http | |
| 8 | // | |
| 9 | ||
| 10 | #ifndef BOOST_HTTP_DETAIL_BUFFER_UTILS_HPP | |
| 11 | #define BOOST_HTTP_DETAIL_BUFFER_UTILS_HPP | |
| 12 | ||
| 13 | #include <boost/capy/buffers.hpp> | |
| 14 | #include <boost/core/span.hpp> | |
| 15 | #include <iterator> | |
| 16 | ||
| 17 | namespace boost { | |
| 18 | namespace http { | |
| 19 | namespace detail { | |
| 20 | ||
| 21 | template<typename BufferSequence> | |
| 22 | auto | |
| 23 | 82154 | make_span(BufferSequence const& bs) -> |
| 24 | boost::span<typename std::iterator_traits<decltype(capy::begin(bs))>::value_type const> | |
| 25 | { | |
| 26 | return { &*capy::begin(bs), | |
| 27 | 164308 | std::size_t(std::distance(capy::begin(bs), capy::end(bs))) }; |
| 28 | } | |
| 29 | ||
| 30 | } // detail | |
| 31 | } // http | |
| 32 | } // boost | |
| 33 | ||
| 34 | #endif | |
| 35 |