TypedString :: compare - - internal feature (not documented)
The result of a comparison is an integer value with the following meaning:
- 0: both operands have the same value
- 1: the calling operand is greater than the passed operand
- -1: the calling operand is smaller than the passed operand
Implementation overview
- - internal feature (not documented)
TypedString :: compare ( iPosition, iCount, cString, bCaseSensitive ) - - internal feature (not documented)
TypedString :: compare ( cString ) - - internal feature (not documented)
TypedString :: compare ( cString, bCaseSensitive ) - - internal feature (not documented)
TypedString :: compare ( iPosition, iCount, cString )
Implementation details
-
- internal feature (not documented)
int32 TypedString  :: compare ( int32 iPosition, int32 iCount, odaba::String &cString, bool bCaseSensitive )
- iPosition
- Position in collection
The position of an element in a collection is beginning with 0 for the first element.
- iCount
- Number of items
The value contains the number of items to be processed or stored in a collection.
- cString
- Constant string object
When iPosition exceeds the string length or when the string is empty, the the function returns -1 (lower).
- bCaseSensitive
- Case sensitive option
The option indicates case sensitive data in text (true)
to list
- iPosition
- Position in collection
-
- internal feature (not documented)
int32 TypedString  :: compare ( odaba::String &cString )
- cString
- Constant string object
When iPosition exceeds the string length or when the string is empty, the the function returns -1 (lower).
to list
- cString
- Constant string object
-
- internal feature (not documented)
int32 TypedString  :: compare ( odaba::String &cString, bool bCaseSensitive )
- cString
- Constant string object
When iPosition exceeds the string length or when the string is empty, the the function returns -1 (lower).
- bCaseSensitive
- Case sensitive option
The option indicates case sensitive data in text (true)
to list
- cString
- Constant string object
-
- internal feature (not documented)
int32 TypedString  :: compare ( int32 iPosition, int32 iCount, odaba::String &cString )
- iPosition
- Position in collection
The position of an element in a collection is beginning with 0 for the first element.
- iCount
- Number of items
The value contains the number of items to be processed or stored in a collection.
- cString
- Constant string object
When iPosition exceeds the string length or when the string is empty, the the function returns -1 (lower).
to list
- iPosition
- Position in collection