mirror of
https://github.com/golang/go
synced 2024-11-07 15:46:23 -07:00
070951c5dc
It has moved to golang.org/x/exp/constraints. Perhaps it will move back to the standard library in a future release. For golang/go#45458 Fixes golang/go#50792 Change-Id: I93aa251a7afe7b329a3d3faadc0c5d6388b1f0e9 Reviewed-on: https://go-review.googlesource.com/c/go/+/382460 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Robert Griesemer <gri@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>
36 lines
613 B
Go
36 lines
613 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"
|
|
)
|
|
|
|
type Complex interface {
|
|
~complex64 | ~complex128
|
|
}
|
|
|
|
func zero[T Complex]() T {
|
|
return T(0)
|
|
}
|
|
func pi[T Complex]() T {
|
|
return T(3.14)
|
|
}
|
|
func sqrtN1[T Complex]() T {
|
|
return T(-1i)
|
|
}
|
|
|
|
func main() {
|
|
fmt.Println(zero[complex128]())
|
|
fmt.Println(pi[complex128]())
|
|
fmt.Println(sqrtN1[complex128]())
|
|
fmt.Println(zero[complex64]())
|
|
fmt.Println(pi[complex64]())
|
|
fmt.Println(sqrtN1[complex64]())
|
|
}
|
|
|