Return doc value as a float.

Mandatory: every DocValues implementation must implement at least this method.

Namespace: Lucene.Net.Search.Function
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public abstract float FloatVal(
	int doc
)
Visual Basic
Public MustOverride Function FloatVal ( _
	doc As Integer _
) As Single
Visual C++
public:
virtual float FloatVal(
	int doc
) abstract

Parameters

doc
Type: System..::..Int32
document whose float value is requested.

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Search.Function.DocValues.FloatVal(System.Int32)"]

See Also