blob: d70a868470fcffc735e8b1edfbc0160fa11cb564 (
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
27
|
#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, concept* allocator = nullptr);
std::string getname(concept* r);
void givename(concept* con, std::string const & name);
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);
}
}
|