TypedString :: nextValue - Get next value from string
The function returns the next value element, i.e. an element, that is not a collection and not an instance. The function recursively analyzes the string until the next value has been located and continues searching from the last element located.
Return value: Success ( bool )
The value is true when the function was executed successfully. Otherwise the value is set to false.
Implementation overview
- Get next value from string
TypedString :: nextValue ( rTypedString ) - Get next value from string
TypedString :: nextValue ( rTypedString, cTypedString )
Implementation details
-
Get next value from string
bool TypedString  :: nextValue ( odaba::TypedString &rTypedString )
The function returns the next value from the string regardless of the starting position.
- rTypedString - Reference to typed string
to list
-
Get next value from string
bool TypedString  :: nextValue ( odaba::TypedString &rTypedString, odaba::TypedString &cTypedString )
The function returns the next value from the string within the context of the parent string passed in cTypedString..
- rTypedString - Reference to typed string
- cTypedString
- Typed string
A typed string string contains data in the object interchange format (OIF). Typed strings are used for passing key or instance values.
to list