blob: 936191702a059475ef0541b8196b0d62cecb4019 (
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
26
|
#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);
std::string& getname(concept* r);
bool isa(concept* member, concept* group);
concept* hyphenate(concept* a, concept* b);
concept* alloc(concept* allocator, std::any val);
std::string dump(concept * what, concept * skipmarkertype, concept * skipmarkertarget);
}
}
|