| 1174 | } |
| 1175 | |
| 1176 | static void WriteZero(out_type* begin, out_type* end) { |
| 1177 | std::fill(begin, end, out_type{}); |
| 1178 | } |
| 1179 | |
| 1180 | static void WriteRange(out_type* out, const in_type* values, size_type length) { |
| 1181 | std::memcpy(out, values, length * sizeof(out_type)); |
no outgoing calls
no test coverage detected