Table of Contents

Topic

Description

IndexAlphabetical list of all items.
Math RoutinesMiscellaneous mathematical and low-level routines
String HandlingThis set of utility functions remove specified characters from sequences
UtilitiesMiscellaneous "utility" type routihes.

Index

abs [func] Absolute value.
compress [func] Replaces embedded whitespace with pRep
compress_chars [func] Replaces embedded sequences of pChars with pRep
DIMArray [func] Creates an array (sequence) with the dimensions specified.
False [const] Defines the Euphoria FALSE value
findAltKey [func] Find alternate key in list.
findKey [func] Find key in list.
get_bits [func] Does the reverse of or_all() in that it gets all the bit values from an atom.
hi_word [func] returns the high 16 bits of pData
iff [func] Used to embed an 'if' test inside an expression.
insertIndex [func] Inserts Data at position index in the sequence list
lookup [func] Returns the corresponding element.
lo_word [func] returns the low-16 bits of pData
Math Routines
or_all [func] Calculates a binary OR against each element in pData
pack_word [func] Packs values into word.
removeIndex [func] Remove the element at position index from the sequence list
removeItem [func] Removes item from the list, if it is in the list.
removeKey [func] Removes keyed item from the list, if it is in the list.
rotate_elements [func] moves elements about in list according to the index set.
set_whitespace [func] Defines what is "whitespace"
shortInt [func] Converts a number into a 16-bit signed integer
signed_word [func] Converts a into a signed 16-bit integer.
split [func] Returns the undelimited substrings
String Handling
TextToNumber [func] This converts the text into a number.
trim [func] Removes any whitespace chars from both ends of pSource
trim_all [func] Removes all whitespace chars from pSource
trim_all_chars [func] Removes all the matching characters.
trim_chars [func] Removes any pChars from both ends of pSource
trim_left [func] Removes any whitespace chars from the left of pSource
trim_left_chars [func] Removes the leftmost set of characters
trim_right [func] Removes any whitespace chars from the right of pSource
trim_right_chars [func] Removes the rightmost set of characters
True [const] Defines the Euphoria TRUE value
unpack_sWord [func] Returns signed high and signed low portions of a 32-bit word.
unpack_word [func] Returns high and low portions of a 32-bit word.
Utilities