struct ngraph::runtime::reference::details::IsRandomAccessIt¶
#include <span.hpp>
template <typename It>
struct IsRandomAccessIt
{
// fields
static constexpr bool value = std::is_same<typename It::iterator_category, std::random_access_iterator_tag>::value;
};