mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
feat(big): add SBigFromBinary
This commit is contained in:
parent
902ddcf7d8
commit
6c83070380
7 changed files with 66 additions and 0 deletions
|
|
@ -13,6 +13,10 @@ uint32_t BigBuffer::operator[](uint32_t index) const {
|
|||
return 0;
|
||||
}
|
||||
|
||||
void BigBuffer::Clear() {
|
||||
this->m_data.SetCount(this->m_offset);
|
||||
}
|
||||
|
||||
uint32_t BigBuffer::Count() const {
|
||||
return this->m_data.Count() - this->m_offset;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue