go.opentelemetry.io/otel/label.Value.numeric (field)

15 uses

	go.opentelemetry.io/otel/label (current package)
		value.go#L36: 	numeric  uint64
		value.go#L60: 		numeric: internal.BoolToRaw(v),
		value.go#L68: 		numeric: internal.Int64ToRaw(v),
		value.go#L76: 		numeric: internal.Uint64ToRaw(v),
		value.go#L84: 		numeric: internal.Float64ToRaw(v),
		value.go#L92: 		numeric: internal.Int32ToRaw(v),
		value.go#L100: 		numeric: internal.Uint32ToRaw(v),
		value.go#L108: 		numeric: internal.Float32ToRaw(v),
		value.go#L172: 	return internal.RawToBool(v.numeric)
		value.go#L178: 	return internal.RawToInt32(v.numeric)
		value.go#L184: 	return internal.RawToInt64(v.numeric)
		value.go#L190: 	return internal.RawToUint32(v.numeric)
		value.go#L196: 	return internal.RawToUint64(v.numeric)
		value.go#L202: 	return internal.RawToFloat32(v.numeric)
		value.go#L208: 	return internal.RawToFloat64(v.numeric)