mirror of
https://github.com/golang/go
synced 2024-11-24 22:27:57 -07:00
19 lines
330 B
Go
19 lines
330 B
Go
|
// compile -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 p
|
||
|
|
||
|
import "constraints"
|
||
|
|
||
|
func f[T constraints.Chan[E], E any](e E) T {
|
||
|
ch := make(T)
|
||
|
go func() {
|
||
|
defer close(ch)
|
||
|
ch <- e
|
||
|
}()
|
||
|
return ch
|
||
|
}
|