getNewBBSTreeNode
Short summary
function to create a new balanced binary searchtree node
- Return type: CNM_ReturnTypes.SingleExecutionResult
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| object | CNM_AbstractObject.IObject | the object that should be wrapped | input |
| node | IBalancedBinarySearchTreeNode | the created tree node container element | output |
Code
Declaration
METHOD getNewBBSTreeNode :CNM_ReturnTypes.SingleExecutionResult
VAR_INPUT
(* the object that should be wrapped *)
object :CNM_AbstractObject.IObject;
END_VAR
VAR_OUTPUT
(* the created tree node container element *)
node :IBalancedBinarySearchTreeNode;
END_VAR