Files
2019/utilities/pair.go
Parnic dd5af1f2cc Move Pair to a more reusable location
I originally used this in my day 10 solution, but ended up removing it. Either way, it's a general utility so it belongs here.
2022-06-10 15:29:39 -05:00

7 lines
70 B
Go

package utilities
type Pair[T, U any] struct {
First T
Second U
}