LCOV - code coverage report
Current view: top level - src/detail - buffer_utils.hpp (source / functions) Coverage Total Hit
Test: coverage_remapped.info Lines: 100.0 % 2 2
Test Date: 2026-06-13 19:44:58 Functions: 100.0 % 3 3

           TLA  Line data    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 HIT       83342 : 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          166684 :         std::size_t(std::distance(capy::begin(bs), capy::end(bs))) };
      28                 : }
      29                 : 
      30                 : } // detail
      31                 : } // http
      32                 : } // boost
      33                 : 
      34                 : #endif
        

Generated by: LCOV version 2.3