
19 Oct
2021
19 Oct
'21
1:52 a.m.
On Mon, Oct 18, 2021 at 6:13 PM Andrey Semashev via Boost
How would you document the APIs that would use boost::core::detail::string_view
Like this: namespace boost { namespace json { /** The type of string_view used by the library This type is used when a non-owning reference to a character buffer is passed by parameter or returned by value. For full details see <a href="https://en.cppreference.com/w/cpp/string/basic_string_view" >std::string_view (cppreference.com)</a> */ #ifdef BOOST_JSON_DOCS using string_view = __see_below__ #else using string_view = boost::core::detail::string_view; #endif } // json } // boost