Contains method

bool Contains(
  1. TComplexProperty complexProperty
)
Determines whether a specific property is in the collection. The property to locate in the collection.

Implementation

bool Contains(TComplexProperty complexProperty) {
  return this._items.contains(complexProperty);
}