// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 // Code generated by "pdata/internal/cmd/pdatagen/main.go". DO NOT EDIT. // To regenerate this file run "make genpdata". package internal type Float64Slice struct { orig *[]float64 } func GetOrigFloat64Slice(ms Float64Slice) *[]float64 { return ms.orig } func NewFloat64Slice(orig *[]float64) Float64Slice { return Float64Slice{orig: orig} }