company logo

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

Implementation details

  1. 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
  2. to list
  3. 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.

  4. to list