ContainsValue()

Namespace ›› System ›› MfHashTable ›› Methods ››
Parent Previous Next

ContainsValue()

OutputVar := instance.ContainsKey(value)

ContainsKey(Value)

Determines whether the MfHashTable contains a specific element.

Parameters

value

The value to locate in the MfHashTable

Returns

Returns true if the MfHashTable contains the specified value otherwise, false.

Remarks

The values of the elements of the MfHashTable are compared to the specified value using the MfObject.Equals() method.

This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.