From abbe2486f35c18c948723bc1bf09111ec79897bb Mon Sep 17 00:00:00 2001 From: b2-bot Date: Thu, 6 Jun 2024 02:08:58 +0000 Subject: [PATCH] Update user manual. --- manual/main/index.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/manual/main/index.html b/manual/main/index.html index c583170f98..46adbc9032 100644 --- a/manual/main/index.html +++ b/manual/main/index.html @@ -7882,7 +7882,7 @@
-

value_ref binding(const std::string & module_name);

+

value_ref binding(std::string module_name);

@@ -7920,8 +7920,7 @@
-

void record_binding(const std::string & module_name, const value_ref & -value);

+

void record_binding(std::string module_name, value_ref value);

@@ -7964,8 +7963,8 @@
b2::m C++ -

void poke(const std::string & module_name, list_cref variables, -list_cref value);

+

void poke(std::string module_name, list_cref variables, list_cref +value);

@@ -8005,7 +8004,7 @@
b2::m C++ -

list_ref peek(const std::string & module_name, list_cref variables);

+

list_ref peek(std::string module_name, list_cref variables);

@@ -8079,8 +8078,8 @@
-

list_ref call_in(const value_ref & module_name, std::tuple<value_ref, -list_ref> const lists & rest, bind::context_ref_ context_ref);

+

list_ref call_in(value_ref module_name, std::tuple<value_ref, list_ref> +const lists & rest, bind::context_ref_ context_ref);

@@ -8167,7 +8166,7 @@
< C++ -

void run_tests(const value_ref & m, bind::context_ref_ context_ref);

+

void run_tests(value_ref m, bind::context_ref_ context_ref);

@@ -8199,7 +8198,7 @@
b2::m C++ -

void load(const value_ref & module_name, value_ref filename, list_cref +

void load(value_ref module_name, value_ref filename, list_cref search, bind::context_ref_ context_ref);