Versions Compared

Key

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

...

Info
titleExample - Using udrIsPresent

The function is recursive. If the optional field myField is to be accessed, and it is nested in three levels: fieldA.fieldB.myfield, and all levels are optional, only one if -statement statement is required:

Code Block
if ( udrIsPresent( input.fieldA.fieldB.myField ) ) {
 // Some kind of operation.
}


...

The udrMass functions enable you to manage a decoder which whose purpose is to process large amounts of collected UDRs , while maintaining control over UDRs tailing bytes in between calls to consume.

...