mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
c2de759581
The computation for determining the shapes to use at the top of getInstantation was not always creating shapes with the proper indexes. If an instantiation is being called from another instantiated function, we cannot just copy the shape types unchanged, because their indexes may have changed. So, for type args that already shapes, we still call Shapify() with the correct index. Fixes #48645 Change-Id: Ibb61c6f9a3c317220fb85135ca87eb5ad4dcff9e Reviewed-on: https://go-review.googlesource.com/c/go/+/353030 Trust: Dan Scales <danscales@google.com> Run-TryBot: Dan Scales <danscales@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org>
31 lines
524 B
Go
31 lines
524 B
Go
// run -gcflags=-G=3
|
|
|
|
// Copyright 2021 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
)
|
|
|
|
type Stream[T any] struct {
|
|
}
|
|
|
|
func (s Stream[T]) DropWhile() Stream[T] {
|
|
return Pipe[T, T](s)
|
|
}
|
|
|
|
func Pipe[T, R any](s Stream[T]) Stream[R] {
|
|
it := func(fn func(R) bool) {
|
|
}
|
|
fmt.Println(reflect.TypeOf(it).String())
|
|
return Stream[R]{}
|
|
}
|
|
|
|
func main() {
|
|
s := Stream[int]{}
|
|
s = s.DropWhile()
|
|
}
|