HALDLS
is_writereadable.h
Go to the documentation of this file.
1 #pragma once
4 
5 namespace haldls::vx::detail {
6 
7 template <typename T>
9 {
10  constexpr static bool value = IsReadable<T>::value && IsWriteable<T>::value;
11 };
12 
13 } // namespace haldls::vx::detail