mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
feat(big): add SBigFromUnsigned, SBigNew, and SBigToBinaryBuffer
This commit is contained in:
parent
630e6dbb1f
commit
7d5a157162
10 changed files with 211 additions and 0 deletions
9
storm/big/BigData.cpp
Normal file
9
storm/big/BigData.cpp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#include "storm/big/BigData.hpp"
|
||||
|
||||
TSGrowableArray<uint8_t>& BigData::Output() const {
|
||||
return const_cast<TSGrowableArray<uint8_t>&>(this->m_output);
|
||||
}
|
||||
|
||||
BigBuffer& BigData::Primary() {
|
||||
return this->m_primary;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue