Files
nomad/lib/lang/pair.go
2023-08-10 17:27:15 -05:00

11 lines
185 B
Go

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