xte::drop_v<>

Defined in header <xte/trait/drop_v.hpp>

Removes the volatile qualifier from a given type.


Definition

template<typename T>
using drop_v = /* ... */;



Example

static_assert(xte::is_same<const int&, xte::drop_v<const volatile int&>>);
[View in Compiler Explorer]