Reformat docs.
This commit is contained in:
@@ -5,6 +5,12 @@ Advanced Topics
|
||||
|
||||
This section covers advanced features such as:
|
||||
|
||||
* [Script optimization]
|
||||
* Simulated [Object Oriented Programming][OOP].
|
||||
|
||||
* The dreaded (or beloved for those with twisted tastes) [`eval`] statement
|
||||
* [`serde`] integration.
|
||||
|
||||
* [Script optimization].
|
||||
|
||||
* [Domain-Specific Languages][DSL].
|
||||
|
||||
* The dreaded (or beloved for those with twisted tastes) [`eval`] statement.
|
||||
|
@@ -3,8 +3,8 @@ Maximum Size of Arrays
|
||||
|
||||
{{#include ../links.md}}
|
||||
|
||||
Limiting How Large Arrays Can Grow
|
||||
---------------------------------
|
||||
Limit How Large Arrays Can Grow
|
||||
------------------------------
|
||||
|
||||
Rhai by default does not limit how large an [array] can be.
|
||||
|
||||
|
@@ -3,8 +3,8 @@ Maximum Call Stack Depth
|
||||
|
||||
{{#include ../links.md}}
|
||||
|
||||
Limiting How Stack Usage by Scripts
|
||||
----------------------------------
|
||||
Limit How Stack Usage by Scripts
|
||||
-------------------------------
|
||||
|
||||
Rhai by default limits function calls to a maximum depth of 128 levels (16 levels in debug build).
|
||||
|
||||
|
@@ -3,8 +3,8 @@ Maximum Size of Object Maps
|
||||
|
||||
{{#include ../links.md}}
|
||||
|
||||
Limiting How Large Object Maps Can Grow
|
||||
--------------------------------------
|
||||
Limit How Large Object Maps Can Grow
|
||||
-----------------------------------
|
||||
|
||||
Rhai by default does not limit how large (i.e. the number of properties) an [object map] can be.
|
||||
|
||||
|
@@ -3,8 +3,8 @@ Maximum Number of Operations
|
||||
|
||||
{{#include ../links.md}}
|
||||
|
||||
Limiting How Long a Script Can Run
|
||||
---------------------------------
|
||||
Limit How Long a Script Can Run
|
||||
------------------------------
|
||||
|
||||
Rhai by default does not limit how much time or CPU a script consumes.
|
||||
|
||||
|
@@ -3,8 +3,8 @@ Maximum Statement Depth
|
||||
|
||||
{{#include ../links.md}}
|
||||
|
||||
Limiting How Deeply-Nested a Statement Can Be
|
||||
--------------------------------------------
|
||||
Limit How Deeply-Nested a Statement Can Be
|
||||
-----------------------------------------
|
||||
|
||||
Rhai by default limits statements and expressions nesting to a maximum depth of 128
|
||||
(which should be plenty) when they are at _global_ level, but only a depth of 32
|
||||
|
@@ -3,8 +3,8 @@ Maximum Length of Strings
|
||||
|
||||
{{#include ../links.md}}
|
||||
|
||||
Limiting How Long Strings Can Grow
|
||||
---------------------------------
|
||||
Limit How Long Strings Can Grow
|
||||
------------------------------
|
||||
|
||||
Rhai by default does not limit how long a [string] can be.
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
Tracking Progress and Force-Termination
|
||||
======================================
|
||||
Track Progress and Force-Termination
|
||||
===================================
|
||||
|
||||
{{#include ../links.md}}
|
||||
|
||||
|
Reference in New Issue
Block a user