struct ngraph::runtime::reference::details::is_complete

#include <span.hpp>

template <typename, typename = size_t>
struct is_complete: public std::false_type
{
};

struct ngraph::runtime::reference::details::is_complete<T, decltype(sizeof(T))>

#include <span.hpp>

template <typename T>
struct is_complete<T, decltype(sizeof(T))>: public std::true_type
{
};