Doxygen code comment cleanups and fixes. No code changes. (0.41.5)
This commit is contained in:
parent
4309ec2a52
commit
892fa3cfbf
88 changed files with 224 additions and 265 deletions
|
|
@ -20,9 +20,6 @@
|
|||
*
|
||||
* Error Handling:
|
||||
* - Exits if not integer
|
||||
*
|
||||
* @author Johannes Findeisen
|
||||
* @date 2025-10-16
|
||||
*/
|
||||
|
||||
case OP_ABS: {
|
||||
|
|
|
|||
|
|
@ -21,9 +21,6 @@
|
|||
* Error Handling:
|
||||
* - Exits if arguments wrong types
|
||||
* - Handles hi < lo case
|
||||
*
|
||||
* @author Johannes Findeisen
|
||||
* @date 2025-10-16
|
||||
*/
|
||||
|
||||
case OP_CLAMP: {
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@
|
|||
* - Exits with an error if the operands are not integers.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_MAX
|
||||
* // Stack before: [10, 42]
|
||||
* // Stack after: [42]
|
||||
* - Bytecode: OP_MAX
|
||||
* - Stack before: [10, 42]
|
||||
* - Stack after: [42]
|
||||
*/
|
||||
|
||||
case OP_MAX: {
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@
|
|||
* - Exits with an error if the operands are not integers.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_MIN
|
||||
* // Stack before: [10, 42]
|
||||
* // Stack after: [10]
|
||||
* - Bytecode: OP_MIN
|
||||
* - Stack before: [10, 42]
|
||||
* - Stack after: [10]
|
||||
*/
|
||||
|
||||
case OP_MIN: {
|
||||
|
|
|
|||
|
|
@ -24,9 +24,9 @@
|
|||
* - Exits with an error if the second operand is zero.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_MOD
|
||||
* // Stack before: [10, 3]
|
||||
* // Stack after: [1]
|
||||
* - Bytecode: OP_MOD
|
||||
* - Stack before: [10, 3]
|
||||
* - Stack after: [1]
|
||||
*/
|
||||
|
||||
case OP_MOD: {
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@
|
|||
* - Exits with an error if the operands are not integers.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_POW
|
||||
* // Stack before: [2, 3]
|
||||
* // Stack after: [8]
|
||||
* - Bytecode: OP_POW
|
||||
* - Stack before: [2, 3]
|
||||
* - Stack after: [8]
|
||||
*/
|
||||
|
||||
case OP_POW: {
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@
|
|||
* - Exits with an error if the lower bound is greater than the upper bound.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_RANDOM_INT
|
||||
* // Stack before: [10, 1]
|
||||
* // Stack after: [7]
|
||||
* - Bytecode: OP_RANDOM_INT
|
||||
* - Stack before: [10, 1]
|
||||
* - Stack after: [7]
|
||||
*/
|
||||
|
||||
case OP_RANDOM_INT: {
|
||||
|
|
|
|||
|
|
@ -22,9 +22,9 @@
|
|||
* - Exits with an error if the seed is not an integer.
|
||||
*
|
||||
* Example:
|
||||
* // Bytecode: OP_RANDOM_SEED
|
||||
* // Stack before: [42]
|
||||
* // Stack after: []
|
||||
* - Bytecode: OP_RANDOM_SEED
|
||||
* - Stack before: [42]
|
||||
* - Stack after: []
|
||||
*/
|
||||
|
||||
case OP_RANDOM_SEED: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue