cuSBF
Loading...
Searching...
No Matches
cusbf::RecordQueryConsumer Concept Reference

Callable invoked once per record by Filter::query_record_batch overloads that take a callback. More...

#include <Fastx.hpp>

Concept definition

template<typename Functor>
concept cusbf::RecordQueryConsumer = requires(Functor f, const RecordQueryView& view) {
{ f(view) } -> std::same_as<void>;
}
Callable invoked once per record by Filter::query_record_batch overloads that take a callback.
Definition Fastx.hpp:224

Detailed Description

Callable invoked once per record by Filter::query_record_batch overloads that take a callback.

Must accept const RecordQueryView& and return void. The RecordQueryView::hits span is valid only for the duration of the call.

Definition at line 224 of file Fastx.hpp.