|
| template<class U , uint16_t N> |
| FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span< U, N > | flatbuffers::make_span (Array< U, N > &arr) FLATBUFFERS_NOEXCEPT |
| |
| template<class U , uint16_t N> |
| FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span< const U, N > | flatbuffers::make_span (const Array< U, N > &arr) FLATBUFFERS_NOEXCEPT |
| |
| template<class U , uint16_t N> |
| FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span< uint8_t, sizeof(U) *N > | flatbuffers::make_bytes_span (Array< U, N > &arr) FLATBUFFERS_NOEXCEPT |
| |
| template<class U , uint16_t N> |
| FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span< const uint8_t, sizeof(U) *N > | flatbuffers::make_bytes_span (const Array< U, N > &arr) FLATBUFFERS_NOEXCEPT |
| |
| template<typename T , uint16_t length> |
| Array< T, length > & | flatbuffers::CastToArray (T(&arr)[length]) |
| |
| template<typename T , uint16_t length> |
| const Array< T, length > & | flatbuffers::CastToArray (const T(&arr)[length]) |
| |
| template<typename E , typename T , uint16_t length> |
| Array< E, length > & | flatbuffers::CastToArrayOfEnum (T(&arr)[length]) |
| |
| template<typename E , typename T , uint16_t length> |
| const Array< E, length > & | flatbuffers::CastToArrayOfEnum (const T(&arr)[length]) |
| |
| template<typename T , uint16_t length> |
| bool | flatbuffers::operator== (const Array< T, length > &lhs, const Array< T, length > &rhs) noexcept |
| |