Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext
http::param_list::value_type

The type of each element in the list.

Synopsis
using value_type = std::pair< string_view, string_view >;
Description

The first string in the pair is the name of the parameter, and the second string in the pair is its value (which may be empty).


PrevUpHomeNext