containers/tuple.go

7 lines
76 B
Go
Raw Permalink Normal View History

2022-07-22 20:26:24 -04:00
package containers
type Tuple[F any, S any] struct {
First F
Second S
}