containers/tuple.go
2022-07-22 20:26:24 -04:00

7 lines
76 B
Go

package containers
type Tuple[F any, S any] struct {
First F
Second S
}