| 215 | // Construct array reader and try to deduce template augments |
| 216 | template <typename T, size_t N> |
| 217 | static inline detail::Reader<T, N> Make(const std::array<T, N>& native_array) { |
| 218 | return detail::Reader<T, N>(native_array); |
| 219 | } |
| 220 | |
| 221 | // Construct array writer and try to deduce template augments |
| 222 | template <typename T, size_t N> |
no outgoing calls