Template:noexcept
From cppreference.com
noexcept specification:
noexceptAdds information about noexcept specification.
{{noexcept|specification (optional)|notes=notes (optional)}}
specification - specifies the code within noexcept().notes - adds additional notes that will appear next to the noexcept explanation. Example:
{{noexcept|
((std::is_nothrow_invocable_v
<decltype(ranges::iter_move),
const ranges::iterator_t</*maybe-const*/<Const, Views>>&> &&
std::is_nothrow_convertible_v<ranges::range_rvalue_reference_t
</*maybe-const*/<Const, Views>>, Ref>) && ...)
}} results in
noexcept specification:
noexcept( ((std::is_nothrow_invocable_v <decltype(ranges::iter_move), const ranges::iterator_t</*maybe-const*/<Const, Views>>&> && std::is_nothrow_convertible_v<ranges::range_rvalue_reference_t </*maybe-const*/<Const, Views>>, Ref>) && ...) )
