containers/tuple.go

7 lines
76 B
Go

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