Bitcoin Core
31.1.0
P2P Digital Currency
Toggle main menu visibility
Loading...
Searching...
No Matches
btck
IndexedContainer
btck::IndexedContainer Concept Reference
#include <
bitcoinkernel_wrapper.h
>
Concept definition
template
<
typename
Container,
typename
SizeFunc,
typename
GetFunc>
concept
IndexedContainer
=
requires
(
const
Container& c, SizeFunc size_func, GetFunc get_func, std::size_t i) {
{ std::invoke(size_func, c) } -> std::convertible_to<std::size_t>;
{ std::invoke(get_func, c, i) };
// Return type is deduced
}
btck::IndexedContainer
Definition
bitcoinkernel_wrapper.h:212
Detailed Description
Definition at line
212
of file
bitcoinkernel_wrapper.h
.
Generated on
for Bitcoin Core by
1.17.0