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

This is the documentation for a snapshot of the develop branch, built from commit adcd4c09f0.
PrevUpHomeNext
http::basic_fields::at (1 of 2 overloads)

Returns the value for a field, or throws an exception.

Synopsis
string_view const
at(
    field name) const;
Description

If more than one field with the specified name exists, the first field defined by insertion order is returned.

Parameters

Name

Description

name

The name of the field.

Return Value

The field value.

Exceptions

Type

Thrown On

std::out_of_range

if the field is not found.


PrevUpHomeNext