(
a: wit_bindgen::rt::Map<u32, String>,
)
| 54 | } |
| 55 | |
| 56 | fn inline_roundtrip( |
| 57 | a: wit_bindgen::rt::Map<u32, String>, |
| 58 | ) -> wit_bindgen::rt::Map<String, u32> { |
| 59 | let mut result = wit_bindgen::rt::Map::new(); |
| 60 | for (k, v) in a { |
| 61 | result.insert(v, k); |
| 62 | } |
| 63 | result |
| 64 | } |
| 65 | |
| 66 | fn large_roundtrip(a: NamesById) -> NamesById { |
| 67 | a |