Skip to main content

andThen

Short summary

Method to append another Applier to the chained applier.

Return: ``THIS^```IChainedApplier`

Parameters

NameTypeCommentKind
applierCNM_CollectionInterfaces.IApplier-input

Code

Declaration

METHOD andThen : CNM_CollectionInterfaces.IApplierChainContinue
VAR_INPUT
applier :CNM_CollectionInterfaces.IApplier;
END_VAR

Implementation

THIS^.applierList.append(applier);

andThen := THIS^;