1
0
Fork 0
forked from fun/fun

Doxygen code comment cleanups and fixes. No code changes. (0.41.5)

This commit is contained in:
Johannes Findeisen 2026-05-01 22:19:15 +02:00
commit 892fa3cfbf
88 changed files with 224 additions and 265 deletions

View file

@ -20,9 +20,6 @@
*
* Error Handling:
* - Exits if not integer
*
* @author Johannes Findeisen
* @date 2025-10-16
*/
case OP_ABS: {

View file

@ -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: {

View file

@ -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: {

View file

@ -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: {

View file

@ -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: {

View file

@ -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: {

View file

@ -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: {

View file

@ -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: {