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

A callable that represents a transaction action. More...

#include <concepts.h>

Concept definition

template<typename F>
A callable type that can be invoked with given arguments.
Definition concepts.h:77
A callable that represents a transaction action.
Definition concepts.h:247

Detailed Description

A callable that represents a transaction action.

Example usage:

template<TransactionAction F>
void add_step(F&& action) {
steps_.push_back(std::forward<F>(action));
}

Definition at line 247 of file concepts.h.