You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/collections/doc.go

15 lines
710 B

// Copyright IBM Corp. 2014, 2026
// 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
// are not directly comparable.
//
// There have been some discussions about introducing similar functionality
// into the Go standard library. Should that happen in future then we should
// consider removing the types from this package and adapting callers to use
// the standard library equivalents instead, since there is nothing
// Terraform-specific about the implementations in this package.
package collections