Files
2019/utilities/pair.go
Parnic 3b3c805997 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-12 13:37:37 -05:00

7 lines
70 B
Go

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