feat(big): add SBigFromUnsigned, SBigNew, and SBigToBinaryBuffer

This commit is contained in:
fallenoak 2023-01-29 11:48:18 -06:00 committed by GitHub
parent 630e6dbb1f
commit 7d5a157162
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 211 additions and 0 deletions

19
storm/big/BigStack.hpp Normal file
View file

@ -0,0 +1,19 @@
#ifndef STORM_BIG_BIG_STACK_HPP
#define STORM_BIG_BIG_STACK_HPP
#include "storm/big/BigBuffer.hpp"
#include <cstdint>
class BigStack {
public:
// Static variables
const static uint32_t SIZE = 16;
// Member variables
BigBuffer m_buffer[SIZE];
uint32_t m_used = 0;
// Member functions
};
#endif