future.go 98 B

1234567
  1. package generics
  2. import "context"
  3. type Future[T any] interface {
  4. Wait(ctx context.Context) T
  5. }