| 497 | array type being inferred. |
| 498 | */ |
| 499 | template<template<class T> class Allocator, class T> inline std::size_t arrayCapacity(Array<T>& array) { |
| 500 | return arrayCapacity<T, Allocator<T>>(array); |
| 501 | } |
| 502 | #endif |
| 503 | |
| 504 | /** |
no test coverage detected