()
| 318 | } |
| 319 | |
| 320 | public override string ToString() |
| 321 | { |
| 322 | StringBuilder result = new(); |
| 323 | result.Append("SpacetimeDB.MultiDictionary { "); |
| 324 | foreach (var item in RawDict) |
| 325 | { |
| 326 | result.Append($"({item.Key}: {item.Value.Value}) x {item.Value.Multiplicity}, "); |
| 327 | } |
| 328 | result.Append("}"); |
| 329 | return result.ToString(); |
| 330 | } |
| 331 | |
| 332 | } |
| 333 |
no outgoing calls