tremor-script 0.12.4

Tremor Script Interpreter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
### The binary module handles interacting with the binary/bytes type

## Returns the number of bytes in a`binary`
##
## Returns a `integer`
intrinsic fn len(input) as binary::len;

## Turns an `array` of bytes into a `binary`
##
## Returns a `binary`
intrinsic fn from_bytes(input) as binary::from_bytes;

## Turns a `binary` into an `array` of bytes
##
## Returns an `array`
intrinsic fn into_bytes(input) as binary::into_bytes;