com.livecode.binary

Typemodule
DictionaryLCB
LibraryLiveCode Builder
Associationscom.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.

TypeNameSummarySyntax
expressionEmptyData

Designates data of length 0.

the empty data

modulecom.livecode.binary

This library consists of the operations on binary strings provided by the standard library of LiveCode Builder.

the empty data

operatorConcatenateBytes

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>

statementPutBytesAfter

Appends Source bytes to Target bytes.

put <Source> after <Target>

- - -PutBytesBefore

Prepends Source bytes to Target bytes.

put <Source> before <Target>