diff options
Diffstat (limited to 'docs/types.rst')
-rw-r--r-- | docs/types.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/types.rst b/docs/types.rst index 9811df69..27ab82ff 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -110,6 +110,11 @@ Operators: * Comparisons: `<=`, `<`, `==`, `!=`, `>=`, `>` (evaluate to `bool`) * Bit operators: `&`, `|`, `^` (bitwise exclusive or), `~` (bitwise negation) +* Index access: If `x` is of type `bytesI`, then `x[k]` for `0 <= k < I` returns the `k` th byte (read-only). + +Members: + +* `.length` yields the fixed length of the byte array (read-only). Dynamically-sized byte array ---------------------------- |