| 1043 | array type being inferred. |
| 1044 | */ |
| 1045 | template<template<class> class Allocator, class T> inline ArrayView<T> arrayInsert(Array<T>& array, std::size_t index, typename std::common_type<ArrayView<const T>>::type values) { |
| 1046 | return arrayInsert<T, Allocator<T>>(array, index, values); |
| 1047 | } |
| 1048 | #endif |
| 1049 | |
| 1050 | /** @overload */ |