Skip to content

Commit

Permalink
fix docs list
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed Jul 1, 2024
1 parent 3d231a3 commit d50f58b
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions docs/source/supported.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,17 +200,18 @@ Function call
^^^^^^^^^^^^^

Bultin functions:
- `print()`: debug function, ignore by conversion
- `len(Tuple)`, `len(Qlist)``: returns the length of a tuple
- `max(a, b, ...)`, `max(Tuple)`, `max(Qlist)`: returns the max of a tuple
- `min(a, b, ...)`, `min(Tuple)`, `min(Qlist)`: returns the min of a tuple
- `sum(Tuple)`, `sum(Qlist)`: returns the sum of the elemnts of a tuple / list
- `all(Tuple)`, `all(Qlist)`: returns True if all of the elemnts are True
- `any(Tuple)`, `any(Qlist)`: returns True if any of the elemnts are True
- `ord(Qchar)`: returns the integer value of the given Qchar
- `chr(Qint)`: returns the char given its ascii code
- `int(Qfixed | Qint)`: returns the integer part of a Qfixed
- `float(Qint | Qfixed)`: returns a Qfixed representing the Qint

* `print()`: debug function, ignore by conversion
* `len(Tuple)`, `len(Qlist)``: returns the length of a tuple
* `max(a, b, ...)`, `max(Tuple)`, `max(Qlist)`: returns the max of a tuple
* `min(a, b, ...)`, `min(Tuple)`, `min(Qlist)`: returns the min of a tuple
* `sum(Tuple)`, `sum(Qlist)`: returns the sum of the elemnts of a tuple / list
* `all(Tuple)`, `all(Qlist)`: returns True if all of the elemnts are True
* `any(Tuple)`, `any(Qlist)`: returns True if any of the elemnts are True
* `ord(Qchar)`: returns the integer value of the given Qchar
* `chr(Qint)`: returns the char given its ascii code
* `int(Qfixed | Qint)`: returns the integer part of a Qfixed
* `float(Qint | Qfixed)`: returns a Qfixed representing the Qint


Statements
Expand Down

0 comments on commit d50f58b

Please sign in to comment.