package wazevoapi

// ResetMap resets the map to an empty state, or creates a new map if it is nil.
func [ comparable,  any]( map[]) map[] {
	if  == nil {
		 = make(map[])
	} else {
		clear()
	}
	return 
}