summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-1/funcs.hpp
blob: eab37e563226f9aa75fd7e474570c9b2f2d4c28a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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);

concept* hyphenate(concept* a, concept* b);

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

}
}