[#boost-urls-ignore_case_param-2constructor-00] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/ignore_case_param.adoc[ignore_case_param]::ignore_case_param :relfileprefix: ../../../ :mrdocs: Constructor == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/ignore_case.hpp#L89[boost/url/ignore_case.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr ignore_case_param(/* implementation-defined */ value) noexcept; ---- == Description Construction from xref:boost/urls/ignore_case.adoc[`ignore_case`] indicates that comparisons should be case‐insensitive. The first parameter to this function should be the variable xref:boost/urls/ignore_case.adoc[`ignore_case`]. == Example When xref:boost/urls/ignore_case.adoc[`ignore_case`] is passed as an argument, this function ignores case when performing comparisons: [,cpp] ---- void f( ignore_case_param(ignore_case) ); ---- == Parameters [cols=2] |=== | Name | Description | *value* | The object to construct from |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#