Refureku v2.2.0
C++17 runtime reflection library.
Predicate.h
1
8#pragma once
9
10namespace rfk
11{
20 template <typename T>
21 using Predicate = bool (*)(T const& value, void* userData);
22}
Definition: Allocator.h:16
bool(*)(T const &value, void *userData) Predicate
Predicate defining if a value is valid or not.
Definition: Predicate.h:21