codex
Loading...
Searching...
No Matches
ProcessingFunc Concept Reference

Processes an input buffer. More...

#include <block.hpp>

Concept definition

template<typename T>
concept ProcessingFunc =
std::same_as<
std::invoke_result_t<T, std::size_t>,
std::size_t>
Processes an input buffer.
Definition block.hpp:21

Detailed Description

Processes an input buffer.

Its argument indicates the size of the input buffer. The return value is the size of the output buffer.