feat(big): add SBigMul

This commit is contained in:
fallenoak 2023-01-30 00:10:52 -06:00 committed by GitHub
parent e74654800d
commit 6e96e0a767
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 179 additions and 0 deletions

View file

@ -7,3 +7,7 @@ TSGrowableArray<uint8_t>& BigData::Output() const {
BigBuffer& BigData::Primary() {
return this->m_primary;
}
BigStack& BigData::Stack() const {
return const_cast<BigStack&>(this->m_stack);
}