| 803 | array type being inferred. |
| 804 | */ |
| 805 | template<template<class> class Allocator, class T> inline ArrayView<T> arrayAppend(Array<T>& array, typename std::common_type<ArrayView<const T>>::type values) { |
| 806 | return arrayAppend<T, Allocator<T>>(array, values); |
| 807 | } |
| 808 | #endif |
| 809 | |
| 810 | /** @overload */ |
no test coverage detected