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

#include <span.hpp>

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

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

#include <span.hpp>

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