From c0f217ababf0f5f07da3589159187c8907ae1005 Mon Sep 17 00:00:00 2001 From: vocaviking Date: Fri, 21 Dec 2018 15:43:52 +0100 Subject: [PATCH] Moved ChaiScript_Extras to the bottom --- cheatsheet.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cheatsheet.md b/cheatsheet.md index 350863fa..80d4b3a8 100644 --- a/cheatsheet.md +++ b/cheatsheet.md @@ -198,9 +198,6 @@ chai.eval(R"_( )_"); ``` -## Adding STL math -ChaiScript itself does not provide a link to the math functions defined in ``. You can either add them yourself, or use the [https://github.com/ChaiScript/ChaiScript_Extras](ChaiScript_Extras) helper library. (Which also provides some additional string functions.) - # Executing Script ## General @@ -587,3 +584,6 @@ Both `use` and `eval_file` search the 'usepaths' passed to the ChaiScript constr * `from_json` converts a JSON string into its strongly typed (map, vector, int, double, string) representations * `to_json` converts a ChaiScript object (either a `Object` or one of map, vector, int, double, string) tree into its JSON string representation + +## Extras +ChaiScript itself does not provide a link to the math functions defined in ``. You can either add them yourself, or use the [https://github.com/ChaiScript/ChaiScript_Extras](ChaiScript_Extras) helper library. (Which also provides some additional string functions.)