iridescence

package module
v0.0.12 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 5, 2023 License: MIT Imports: 0 Imported by: 0

README

iridescence_go

A collection of boilerplate I find myself writing a lot.

Contents

Utils
maps.go
// MergeMaps creates a new map and copies target and then source into it
func MergeMaps[K comparable, V any](target, source map[K]V) map[K]V
// Keys gets a slice of all the keys in a map
func Keys[K comparable, V any](self map[K]V) []K
// SortedKeys gets a slice of all the keys in a map, sorted
func SortedKeys[K constraints.Ordered, V any](self map[K]V) []K {
// Values gets a slice of all the values in a map
func Values[K comparable, V any](self map[K]V) []V
// MapToStruct converts a map to a struct by converting through json
func MapToStruct[T any](m map[string]any) (T, error)
// StructToMap converts a struct to a map by converting through json
func StructToMap[T any](t T) (map[string]interface{}, error)

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL