Read file to string/buffer

This commit is contained in:
Isuru Samarathunga
2025-07-18 22:46:35 +05:30
parent a324de4111
commit 83bb826f24
3 changed files with 34 additions and 2 deletions

View File

@ -5,7 +5,8 @@
using namespace ia;
VOID print(IN CONST Span<int>& s)
template<typename _value_type>
VOID print(IN CONST Span<_value_type>& s)
{
for(const auto& v: s)
Logger::Info(v);