added flux bytes type, resolves #392

pull/410/head
Scott Anderson 2019-08-26 09:35:13 -06:00
parent 9de80fab8d
commit 629668847d
1 changed files with 6 additions and 1 deletions

View File

@ -105,7 +105,12 @@ The string type is nullable.
An empty string is **not** a _null_ value.
{{% /note %}}
The length of a string is its size in bytes, not the number of characters, since a single character may be multiple bytes.
The length of a string is its size in bytes, not the number of characters,
since a single character may be multiple bytes.
### Bytes types
A _bytes type_ represents a sequence of byte values.
The bytes type name is `bytes`.
## Regular expression types
A _regular expression type_ represents the set of all patterns for regular expressions.