...
Info |
---|
title | Example - 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 s tatement 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.
...