go.opentelemetry.io/otel/attribute/internal/xxhash.Hash.Uint64 (method)

19 uses

	go.opentelemetry.io/otel/attribute/internal/xxhash (current package)
		xxhash.go#L24: func (h Hash) Uint64(val uint64) Hash {
		xxhash.go#L38: 		return h.Uint64(1)
		xxhash.go#L40: 	return h.Uint64(0)
		xxhash.go#L44: 	return h.Uint64(math.Float64bits(val))
		xxhash.go#L48: 	return h.Uint64(uint64(val)) // nolint:gosec // Overflow doesn't matter since we are hashing.

	go.opentelemetry.io/otel/attribute
		hash.go#L53: 		h = h.Uint64(boolID)
		hash.go#L54: 		h = h.Uint64(v.numeric)
		hash.go#L56: 		h = h.Uint64(int64ID)
		hash.go#L57: 		h = h.Uint64(v.numeric)
		hash.go#L59: 		h = h.Uint64(float64ID)
		hash.go#L61: 		h = h.Uint64(v.numeric)
		hash.go#L63: 		h = h.Uint64(stringID)
		hash.go#L66: 		h = h.Uint64(boolSliceID)
		hash.go#L72: 		h = h.Uint64(int64SliceID)
		hash.go#L78: 		h = h.Uint64(float64SliceID)
		hash.go#L84: 		h = h.Uint64(stringSliceID)
		hash.go#L90: 		h = h.Uint64(byteSliceID)
		hash.go#L93: 		h = h.Uint64(sliceID)
		hash.go#L114: 		h = h.Uint64(emptyID)