This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
zhouyuhuan
/
Cloudpods
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
0d91f1698e
Rami (Branch)
Tag
feature/cloudpods
main
Cloudpods
/
backend
/
vendor
/
github.com
/
anacrolix
/
generics
/
future.go
future.go
98 B
Cronologia
Originale
1
2
3
4
5
6
7
package generics
import "context"
type Future[T any] interface {
Wait(ctx context.Context) T
}