reflect.Value.Slice (method)

12 uses

	reflect (current package)
		type.go#L2408: 		copy(tt.Elem().Field(2).Slice(0, len(methods)).Interface().([]abi.Method), methods)
		value.go#L2469: func (v Value) Slice(i, j int) Value {
		value.go#L2895: 	Copy(s.Slice(ns, ns+nt), t)

	fmt
		print.go#L878: 					bytes = f.Slice(0, f.Len()).Bytes()

	go.opentelemetry.io/otel/internal/attribute
		attribute.go#L29: 	copy(cp.Elem().Slice(0, len(v)).Interface().([]bool), v)
		attribute.go#L37: 	copy(cp.Elem().Slice(0, len(v)).Interface().([]int64), v)
		attribute.go#L45: 	copy(cp.Elem().Slice(0, len(v)).Interface().([]float64), v)
		attribute.go#L53: 	copy(cp.Elem().Slice(0, len(v)).Interface().([]string), v)
		attribute.go#L68: 	return cpy.Elem().Slice(0, correctLen).Interface().([]bool)
		attribute.go#L82: 	return cpy.Elem().Slice(0, correctLen).Interface().([]int64)
		attribute.go#L96: 	return cpy.Elem().Slice(0, correctLen).Interface().([]float64)
		attribute.go#L110: 	return cpy.Elem().Slice(0, correctLen).Interface().([]string)