summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-1/funcs.hpp
blob: 55a28f2581b742067985ebbee3091b79b79ed194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "common.hpp"

#include "../level-0/memorystore.hpp"

#include <string>
#include <sstream>
#include <typeinfo>

namespace intellect {
namespace level1 {

concept* getnamed(std::string const & name);
value<std::string>* getname(concept* r);

bool isa(concept* member, concept* group);

template <typename T>
value<T>* valloc(T const & val);

}
}