com.livecode.binary | |
Type | module |
Dictionary | LCB |
Library | LiveCode Builder |
Associations | com.livecode.binary |
Summary | This library consists of the operations on binary strings provided by the standard library of LiveCode Builder. |
Description | This library consists of the operations on binary strings provided by the standard library of LiveCode Builder. |
Type | Name | Summary | Syntax |
---|---|---|---|
expression | EmptyData | Designates data of length 0. | the empty data |
module | com.livecode.binary | This library consists of the operations on binary strings provided by the standard library of LiveCode Builder. | the empty data |
operator | ConcatenateBytes | Concatenates Left and Right. | <Left> & <Right> |
- - - | DataIsData | Determines whether Left and Right are equal or not. | <Left> is <Right> |
- - - | DataIsGreaterThanData | Determines whether Left is greater than Right under a byte by byte comparison | <Left> > <Right> |
- - - | DataIsLessThanData | Determines whether Left is less than Right under a byte by byte comparison | <Left> < <Right> |
- - - | DataIsNotData | Determines whether Left and Right are equal or not. | <Left> is not <Right> |
statement | PutBytesAfter | Appends Source bytes to Target bytes. | put <Source> after <Target> |
- - - | PutBytesBefore | Prepends Source bytes to Target bytes. | put <Source> before <Target> |