summaryrefslogtreecommitdiff
path: root/intellect-framework-from-internet/starts/meaning-vm/level-1/funcs.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'intellect-framework-from-internet/starts/meaning-vm/level-1/funcs.hpp')
-rw-r--r--intellect-framework-from-internet/starts/meaning-vm/level-1/funcs.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/intellect-framework-from-internet/starts/meaning-vm/level-1/funcs.hpp b/intellect-framework-from-internet/starts/meaning-vm/level-1/funcs.hpp
deleted file mode 100644
index bff0d8a..0000000
--- a/intellect-framework-from-internet/starts/meaning-vm/level-1/funcs.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-
-#include "common.hpp"
-
-#include "../level-0/memorystore.hpp"
-
-#include <string>
-#include <sstream>
-#include <typeinfo>
-
-namespace intellect {
-namespace level1 {
-
-concept* gettext(std::string const & str);
-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 * set);
-
-}
-}