| 379 | // Based on https://en.cppreference.com/w/cpp/container/array/to_array |
| 380 | template <typename ArrayType, size_t N, typename V> |
| 381 | ArrayType vector_to_array(V &&v) { |
| 382 | return vector_to_array_impl<ArrayType, V>(std::forward<V>(v), make_index_sequence<N>{}); |
| 383 | } |
| 384 | |
| 385 | template <typename ArrayType, typename Value, bool Resizable, size_t Size = 0> |
| 386 | struct array_caster { |
nothing calls this directly
no outgoing calls
no test coverage detected