blob: f699dac1e71345a52b7b40e30da0ee70384002d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "asl/meta/internal/quals.hpp"
#include "asl/meta/refs.hpp"
namespace asl {
template<typename T> concept is_func = internal::is_const<typename internal::const_helper<T>::remove> && !is_any_ref<T>;
} // namespace asl
|