collections: Add HashiCorp copyright comments

pull/34738/head
Martin Atkins 2 years ago
parent f347d0a441
commit 15c38a1a19

@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
// Package collections contains some helper types representing collections
// of values that could not normally be represented using Go's built-in
// collection types, typically because of the need to use key types that

@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package collections
// Set represents an associative array from keys of type K to values of type V.

@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package collections
import "testing"

@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package collections
// Set represents an unordered set of values of a particular type.

@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package collections
import (

@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package collections
// UniqueKey represents a value that is comparable and uniquely identifies

@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package collections
type testingKey string

Loading…
Cancel
Save