Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Returns the contents of the byte array as an ASCII-formatted string.

FromAsciiString(

...

ascii_string As String)

Writes the contents of a valid ASCII-formatted string to the byte array. This operation will discard any data currently contained in the byte array.

...

Returns the signed byte at the specified zero-based index in the byte array. To read an unsigned byte within a byte array, use the ifArrayGet.GetEntry() method or the [] array  array operator.

GetSignedLong(index As Integer) As Integer

...

Returns the last (highest index) entry and removes it from the array.

Push(

...

entry As Dynamic)

Adds a new highest index entry to the end of the array.

...

Removes index zero from the array and shifts all other entries down by one unit.

Unshift(

...

entry As Dynamic)

Adds a new index zero to the array and shifts all other entries up by one unit.

Delete(

...

index As Integer) As Boolean

Deletes the indicated array entry and shifts all above entries down by one unit.

...

Deletes every entry in the array.

Append(

...

array As

...

roArray)

Appends one roArray to another. If the passed roArray contains entries that were never set to a value, they are not appended.

...

Returns True if there is not an exact statement.

ifArrayGet

GetEntry(

...

index As Integer) As Dynamic

Returns an array entry of a given index. Entries start at zero. If this method attempts to fetch an entry that has not been set is fetched, it will return Invalid is returned.

ifArraySet

SetEntry(

...

index As Integer,

...

entry As Dynamic)

Sets an entry of a given index to the passed type value.