boost::gil::any_image_view::operator=
Synopsis
Declared in <boost/gil/extension/dynamic_image/any_image_view.hpp>
template<
class U,
class V = detail::resolve_overload_type<U, T...>>
requires !std::is_same<typename std::decay<U>::type, variant>::value && std::is_assignable<V&, U&&>::value && std::is_constructible<V, U&&>::value
constexpr
variant&
operator=(U&& u) noexcept(/* see-below */);
Exception specification
This function is potentially-throwing unless std::is_nothrow_constructible<V, U &&>::value.
Created with MrDocs