summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-0/memorystore.hpp
blob: 78435130cf914c0945d0fd7997adc6db6ddb50d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "common.hpp"

#include <any>

namespace intellect {
namespace level0 {

ref alloc(std::any data = {});
void dealloc(ref);
std::size_t allocated();

}
}