template<typename CB, size_t MaxBinds>
MultiCallbackStorage<CB, false, MaxBinds> struct

Dynamic-capacity storage backend for MultiCallback — bindings live in a std::vector.

Template parameters
CB Callback element type.
MaxBinds Growth increment per resize.

Public functions

auto size() const -> size_t
auto begin() -> auto
auto end() -> auto
auto begin() const -> auto
auto end() const -> auto
auto empty() const -> bool

Public variables

std::vector<CB> Data