File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -265,12 +265,14 @@ Closures are a useful way to represent code that can be executed on each row of
265265
266266### Binary data
267267
268- | | |
269- | --------------------- | ---------------------------------------------------------------------------------------------- |
270- | ** _ Description:_ ** | Describes a range of values from a starting value to an ending value, with an optional stride. |
271- | ** _ Annotation:_ ** | ` range ` |
272- | ** _ Literal Syntax:_ ** | ` <start_value>..<end_value> or ` <start_value>..<second_value>..<end_value>. E.g., ` 1..10 ` . |
273- | ** _ See also:_ ** | [ Language Guide - Binary] ( /lang-guide/chapters/types/basic_types/binary.md ) |
268+ | | |
269+ | --------------------- | --------------------------------------------------------------------------- |
270+ | ** _ Description:_ ** | Represents binary data |
271+ | ** _ Annotation:_ ** | ` binary ` |
272+ | ** _ Literal Syntax:_ ** | ` 0x[ffffffff] ` - hex-based binary representation |
273+ | | ` 0o[1234567] ` - octal-based binary representation |
274+ | | ` 0b[10101010101] ` - binary-based binary representation |
275+ | ** _ See also:_ ** | [ Language Guide - Binary] ( /lang-guide/chapters/types/basic_types/binary.md ) |
274276
275277Binary data, like the data from an image file, is a group of raw bytes.
276278
You can’t perform that action at this time.
0 commit comments