Instance.PropertyArray.appendContainedConcept()

Signature

void appendContainedConcept (PropertyArrayContainedConcept arr, ContainedConcept instance, long time)

Domain

action

Description

Creates a new PropertyAtomContainedConcept set to instance with initial history timestamp time and adds it to the end of the PropertyArray arr. Use instanceY.arr[instanceY.arr@length] = instanceX for appending with system current time.

Parameters

NameTypeDescription
arrPropertyArrayA PropertyArray to append an element to.
instanceContainedConceptA value to append to the PropertyArray arr.
timelongThe initial history timestamp.

Returns

None.

Cautions

Use instanceY.arr[instanceY.arr@length] = instanceX for appending with system current time

Example


Instance.PropertyArray.appendContainedConcept (instanceY.conceptProperty, instanceX, 1111111111111);

Result is: last element of array instanceY.conceptProperty contains instanceX with initial timestamp 1111111111111.