Read‐only random‐access view over an indexed C‐handle collection.
Synopsis
Declared in <kernel/bitcoinkernel_wrapper.h>
template<
typename Container,
auto SizeFunc,
auto GetFunc>
requires IndexedContainer<Container, decltype(SizeFunc), decltype(GetFunc)>
class Range;
Description
Adapts a container that exposes SizeFunc and GetFunc into a standard range whose elements are lazily produced views.
Created with MrDocs