Birds are natural enemies of pests.
esv::remove_cvref_t is used to remove const, volatile, or reference qualifiers from a type at compile-time.
#include <esvcpp/core.hpp> int main() { using t1 = const esv::fx64 &; using t2 = esv::remove_cvref_t<t1>; static_assert(esv::same_as<t2, esv::fx64>); }