package
1.59.5
Repository: https://github.com/nowfred/dd-trace-go.git
Documentation: pkg.go.dev

# Functions

Combinations returns all possible unique selections of size `pick` of a list of strings for which order does not matter an example: Combinations([cat, dog, bird], 2): [cat] -> Combinations([dog, bird], 1) [cat, dog] [cat, bird] [dog] -> Combinations([bird], 1) [dog, bird] [bird] -> Combinations([], 0) n/a.
RepeatString returns a new slice with the string s repeated n times.