String returns a string representation of the map's entries. Values are printed using fmt.Sprintf("%v", v). Order is unspecified.
()
| 189 | // Order is unspecified. |
| 190 | // |
| 191 | func (m *TypeMap) String() string { |
| 192 | return m.toString(true) |
| 193 | } |
| 194 | |
| 195 | // KeysString returns a string representation of the map's key set. |
| 196 | // Order is unspecified. |