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.
7 lines
70 B
Go
7 lines
70 B
Go
package utilities
|
|
|
|
type Pair[T, U any] struct {
|
|
First T
|
|
Second U
|
|
}
|