| 1153 | } |
| 1154 | |
| 1155 | static void WriteZero(out_type* begin, out_type* end) { |
| 1156 | std::fill(begin, end, out_type{}); |
| 1157 | } |
| 1158 | |
| 1159 | static void WriteRange(out_type* out, const in_type* values, size_type length) { |
| 1160 | std::memcpy(out, values, length * sizeof(out_type)); |
no outgoing calls
no test coverage detected