Completed DynamoDB + DAX Benchmarker with a nice TUI to boot
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package utils
|
||||
|
||||
func MapValues[K comparable, V any](inputMap map[K]V) []V {
|
||||
valuesSlice := make([]V, 0)
|
||||
|
||||
for _, value := range inputMap {
|
||||
valuesSlice = append(valuesSlice, value)
|
||||
}
|
||||
|
||||
return valuesSlice
|
||||
}
|
||||
Reference in New Issue
Block a user