Database System 0.1.0
Advanced C++20 Database System with Multi-Backend Support
Loading...
Searching...
No Matches
database::concepts::Predicate Concept Reference

A callable type that returns a boolean value. More...

#include <concepts.h>

Concept definition

template<typename F, typename... Args>
concept database::concepts::Predicate = Invocable<F, Args...> &&
std::convertible_to<std::invoke_result_t<F, Args...>, bool>
A callable type that can be invoked with given arguments.
Definition concepts.h:77
A callable type that returns a boolean value.
Definition concepts.h:100

Detailed Description

A callable type that returns a boolean value.

Definition at line 100 of file concepts.h.