Determines whether the sample contains the given value.

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public bool Contains(
	double value
)
Public Function Contains ( _
	value As Double _
) As Boolean
public:
virtual bool Contains(
	double value
) sealed
abstract Contains : 
        value : float -> bool 
override Contains : 
        value : float -> bool 

Parameters

value
Double
The value to check for.

Return Value

True if the sample contains value, otherwise false.

Implements

ICollection<(Of <(<'T>)>)>..::..Contains(T)

See Also