Files
nomad/lib/lang/pair.go
2023-02-08 15:20:33 -06:00

8 lines
114 B
Go

package lang
// Pair associates two arbitrary types together.
type Pair[T, U any] struct {
First T
Second U
}