added tuple

This commit is contained in:
Steve Dudenhoeffer 2022-07-22 20:26:24 -04:00
parent 985d3fa926
commit 681ab9cecb
1 changed files with 6 additions and 0 deletions

6
tuple.go Normal file
View File

@ -0,0 +1,6 @@
package containers
type Tuple[F any, S any] struct {
First F
Second S
}