| 1131 | private: |
| 1132 | template <typename... T> |
| 1133 | static Vector create__dispatch(traits::false_type, const T&... t){ |
| 1134 | Vector res(sizeof...(T)) ; |
| 1135 | iterator it(res.begin()); |
| 1136 | create_dispatch_impl(it, t...); |
| 1137 | return res; |
| 1138 | } |
| 1139 | |
| 1140 | template <typename... T> |
| 1141 | static Vector create__dispatch( traits::true_type, const T&... t) { |