InstantSetStrategyExecutor
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| INTERNAL | No | No | CNM_AbstractObject.Object | CNM_CollectionInterfaces.IInstantSetStrategy |
UML Diagram
Parameters
none
Properties
className
Type: CNM_AbstractObject.ClassName
This abstract property returns the class name of the concrete object, …
Methods
assignSet
- Parameters:
set(ISetHelper)
- Return type:
VOID
intersect
- Parameters:
set(CNM_CollectionInterfaces.ISet): foreign set to intersect with
- Return type: CNM_CollectionInterfaces.CNM_ReturnTypes.SingleExecutionResult
overwrites the content of this set with the intersection of this set and the given set…
merge
- Parameters:
set(CNM_CollectionInterfaces.ISet): foreign set to merge with
- Return type: CNM_CollectionInterfaces.CNM_ReturnTypes.SingleExecutionResult
overwrites the content of this set with the union of this set and the given set…
subtract
- Parameters:
set(CNM_CollectionInterfaces.ISet): foreign set to construct substraction
- Return type: CNM_CollectionInterfaces.CNM_ReturnTypes.SingleExecutionResult
overwrites the content of this set with the set difference of this set and the given set…
Code
Declaration
FUNCTION_BLOCK INTERNAL InstantSetStrategyExecutor EXTENDS CNM_AbstractObject.Object IMPLEMENTS CNM_CollectionInterfaces.IInstantSetStrategy
VAR
set :ISetHelper;
END_VAR