add lua dv::bytes support

This commit is contained in:
MihailRis
2024-10-03 18:23:50 +03:00
parent 9e8a33c411
commit f7492ce449
2 changed files with 20 additions and 1 deletions
+8
View File
@@ -61,5 +61,13 @@ namespace util {
void resizeFast(size_t size) {
length = size;
}
const T* begin() const {
return ptr.get();
}
const T* end() const {
return ptr.get() + size;
}
};
}