ATLAS Offline Software
Loading...
Searching...
No Matches
Acts::InPlaceClusterization::SequenceContainer Concept Reference

base concept for the container that can be used for a cell collection More...

#include <InPlaceClusterization.h>

Concept definition

template<typename container_t>
concept SequenceContainer = requires(container_t &cont, unsigned int index,
typename container_t::value_type) {
{
cont[index]
} -> std::convertible_to<const typename container_t::value_type &>;
{ cont.empty() } -> std::convertible_to<bool>;
{ cont.size() } -> std::convertible_to<std::size_t>;
} && std::permutable<typename container_t::iterator>
base concept for the container that can be used for a cell collection
Definition index.py:1

Detailed Description

base concept for the container that can be used for a cell collection

Definition at line 87 of file InPlaceClusterization.h.