| 345 | /// @see write (for an usage example) |
| 346 | template <typename T> |
| 347 | Result read(StringSpan file, T& data) |
| 348 | { |
| 349 | return read(file, GrowableBuffer<T>{data}); |
| 350 | } |
| 351 | |
| 352 | /// @brief Read contents of a file into an IGrowableBuffer |
| 353 | /// @param[in] file Path to the file to read |
no outgoing calls
no test coverage detected