From 13732aed12008e0c389b55a8ef435173a7448809 Mon Sep 17 00:00:00 2001 From: chriseth Date: Wed, 3 Feb 2016 21:42:38 +0100 Subject: Documentation. --- docs/types.rst | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docs') 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 ---------------------------- -- cgit