Decode the payload that was encoded using encodeFloat(float)

NOTE: the length of the array must be at least offset + 4 long.

Namespace: Lucene.Net.Analyzers.Payloads
Assembly: Lucene.Net.Contrib.Analyzers (in Lucene.Net.Contrib.Analyzers.dll) Version: 2.9.2.1 (2.9.2.1)

Syntax

C#
public static float DecodeFloat(
	byte[] bytes
)
Visual Basic
Public Shared Function DecodeFloat ( _
	bytes As Byte() _
) As Single
Visual C++
public:
static float DecodeFloat(
	array<unsigned char>^ bytes
)

Parameters

bytes
Type: array<System..::..Byte>[]()[][]
The bytes to decode

Return Value

the decoded float

See Also