#include <algorithm>
#include <cassert>
#include <cstdint>
#include <initializer_list>
#include <iterator>
#include <limits>
#include <type_traits>
#include <utility>
Go to the source code of this file.
|
template<typename Container > |
| opcua::Span (Container &) -> Span< typename Container::value_type > |
|
template<typename Container > |
| opcua::Span (const Container &) -> Span< const typename Container::value_type > |
|
template<typename T , typename U , typename = detail::EnableIfEqualityComparable<T, U>> |
constexpr bool | opcua::operator== (Span< T > lhs, Span< U > rhs) |
|
template<typename T , typename U , typename = detail::EnableIfEqualityComparable<T, U>> |
constexpr bool | opcua::operator!= (Span< T > lhs, Span< U > rhs) |
|