SYMBOL INDEX (940 symbols across 115 files) FILE: cmdutils/cmd_utils.go type CommandLineOptionsGroup (line 9) | type CommandLineOptionsGroup struct FILE: conv/convert.go constant maxJSONFloat (line 14) | maxJSONFloat = float64(1<<53 - 1) constant minJSONFloat (line 15) | minJSONFloat = -float64(1<<53 - 1) constant epsilon (line 16) | epsilon float64 = 1e-9 function IsFloat64AJSONInteger (line 20) | func IsFloat64AJSONInteger(f float64) bool { function ConvertFloat (line 42) | func ConvertFloat[T Float](str string) (T, error) { function ConvertInteger (line 53) | func ConvertInteger[T Signed](str string) (T, error) { function ConvertUinteger (line 64) | func ConvertUinteger[T Unsigned](str string) (T, error) { function ConvertBool (line 81) | func ConvertBool(str string) (bool, error) { function ConvertFloat32 (line 100) | func ConvertFloat32(str string) (float32, error) { return ConvertFloat[f... function ConvertFloat64 (line 103) | func ConvertFloat64(str string) (float64, error) { return ConvertFloat[f... function ConvertInt8 (line 106) | func ConvertInt8(str string) (int8, error) { return ConvertInteger[int8]... function ConvertInt16 (line 109) | func ConvertInt16(str string) (int16, error) { function ConvertInt32 (line 118) | func ConvertInt32(str string) (int32, error) { function ConvertInt64 (line 127) | func ConvertInt64(str string) (int64, error) { function ConvertUint8 (line 132) | func ConvertUint8(str string) (uint8, error) { function ConvertUint16 (line 141) | func ConvertUint16(str string) (uint16, error) { function ConvertUint32 (line 150) | func ConvertUint32(str string) (uint32, error) { function ConvertUint64 (line 159) | func ConvertUint64(str string) (uint64, error) { FILE: conv/convert_format_test.go function TestConvertBool (line 34) | func TestConvertBool(t *testing.T) { function TestFormatBool (line 47) | func TestFormatBool(t *testing.T) { function TestConvertFloat (line 52) | func TestConvertFloat(t *testing.T) { function TestConvertInteger (line 102) | func TestConvertInteger(t *testing.T) { function TestConvertUinteger (line 200) | func TestConvertUinteger(t *testing.T) { function TestIsFloat64AJSONInteger (line 297) | func TestIsFloat64AJSONInteger(t *testing.T) { function TestPreviousIsFloat64AJSONInteger (line 302) | func TestPreviousIsFloat64AJSONInteger(t *testing.T) { function TestBitWiseIsFloat64AJSONInteger (line 307) | func TestBitWiseIsFloat64AJSONInteger(t *testing.T) { function TestBitWise2IsFloat64AJSONInteger (line 312) | func TestBitWise2IsFloat64AJSONInteger(t *testing.T) { function TestStdlib2IsFloat64AJSONInteger (line 317) | func TestStdlib2IsFloat64AJSONInteger(t *testing.T) { function testNotIntegers (line 322) | func testNotIntegers(fn func(float64) bool, skipKnownFailure bool) func(... function testIntegers (line 338) | func testIntegers(fn func(float64) bool, skipKnownFailure bool) func(*te... function BenchmarkIsFloat64JSONInteger (line 358) | func BenchmarkIsFloat64JSONInteger(b *testing.B) { function BenchmarkBitwise (line 370) | func BenchmarkBitwise(b *testing.B) { function previousIsFloat64JSONInteger (line 378) | func previousIsFloat64JSONInteger(f float64) bool { function stdlibIsFloat64JSONInteger (line 401) | func stdlibIsFloat64JSONInteger(f float64) bool { function bitwiseIsFloat64JSONInteger (line 411) | func bitwiseIsFloat64JSONInteger(f float64) bool { function bitwiseIsFloat64JSONInteger2 (line 429) | func bitwiseIsFloat64JSONInteger2(f float64) bool { constant mask (line 501) | mask = 0x7FF constant shift (line 502) | shift = 64 - 11 - 1 constant bias (line 505) | bias = 1023 constant fracMask (line 506) | fracMask = 1<