Files
nomad/lib/lang/pair.go
2023-04-10 15:36:59 +00:00

11 lines
184 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package lang
// Pair associates two arbitrary types together.
type Pair[T, U any] struct {
First T
Second U
}