<boost/url/ignore_case.hpp>
constexpr
ignore_case_param(/* implementation-defined */ value) noexcept;
Construction from ignore_case
indicates that comparisons should be case-insensitive.
The first parameter to this function should be the variable ignore_case
.
When ignore_case
is passed as an argument, this function ignores case when performing comparisons:
void f( ignore_case_param(ignore_case) );
Name | Description |
---|---|
value | The object to construct from |