com.livecode.codeunit

Typemodule
DictionaryLCB
LibraryLiveCode Builder
Associationscom.livecode.codeunit
Summary

This library consists of the operations on codeunits included in the standard library of LiveCode Builder.

Description

This library consists of the operations on codeunits included in the standard library of LiveCode Builder.

TypeNameSummarySyntax
iteratorRepeatForEachCodeunit

Repeat over the codeunits of a string

codeunit <Iterand>

modulecom.livecode.codeunit

This library consists of the operations on codeunits included in the standard library of LiveCode Builder.

codeunit <Iterand>

operatorCodeunitOffset

Finds the first or last occurrence of Needle within Target

the ( first | last ) offset of codeunits <Needle> in <Target>

- - -CodeunitOffsetAfter

Finds the first or last occurrence of Needle after a specified index in Target

the ( first | last ) offset of codeunits <Needle> after <After> in <Target>

- - -CodeunitOffsetBefore

Finds the first or last occurrence of Needle before a specified index in Target.

the ( first | last ) offset of codeunits <Needle> before <Before> in <Target>

- - -CountCodeunitsOf

Counts the number of codeunits in Target.

the number of codeunits in <Target>

- - -FirstCodeunitOf

Designates the first codeunit in Target.

the first codeunit of <Target>

- - -LastCodeunitOf

Designates the last codeunit in Target.

the last codeunit of <Target>

- - -RangeCodeunitOf

Designates the codeunits between indices Start and Finish in Target.

codeunit <Start> to <Finish> of <Target>

- - -SingletonCodeunitOf

Designates the codeunit at index Index in Target.

codeunit <Index> of <Target>

statementDeleteFirstCodeunitOf

Deletes the first codeunit in Target.

delete the first codeunit of <Target>

- - -DeleteLastCodeunitOf

Deletes the last codeunit in Target.

delete the last codeunit of <Target>

- - -DeleteRangeCodeunitOf

Deletes the codeunits between indices Start and Finish in Target.

delete codeunit <Start> to <Finish> of <Target>

- - -DeleteSingletonCodeunitOf

Deletes the codeunit at index Index in Target.

delete codeunit <Index> of <Target>