MCPcopy
hub / github.com/gogf/gf / ExampleStrStrMap_Values

Function ExampleStrStrMap_Values

container/gmap/gmap_z_example_str_str_test.go:358–370  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

356}
357
358func ExampleStrStrMap_Values() {
359 var m gmap.StrStrMap
360 m.Sets(g.MapStrStr{
361 "k1": "v1",
362 "k2": "v2",
363 "k3": "v3",
364 "k4": "v4",
365 })
366 fmt.Println(m.Values())
367
368 // May Output:
369 // [v1 v2 v3 v4]
370}
371
372func ExampleStrStrMap_Contains() {
373 var m gmap.StrStrMap

Callers

nothing calls this directly

Calls 2

SetsMethod · 0.95
ValuesMethod · 0.95

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…