import ceylon.collection { MutableMap } import java.lang { JString=String, Types { nativeString } } "A [[MutableMap]] with keys of type `ceylon.language::String` that wraps a `MutableMap` with keys of type `java.lang::String`. This class can be used to wrap a `java.util::Map` if the Java map is first wrapped with [[CeylonMutableMap]]: CeylonStringMutableMap(CeylonMutableMap(javaMap)) If the given list is not a [[MutableMap]], use [[CeylonStringMap]]." shared class CeylonStringMutableMap<Item> (MutableMap<JString, Item> map) extends CeylonStringMap<Item>(map) satisfies MutableMap<String, Item> { clear() => map.clear(); shared actual CeylonStringMutableMap<Item> clone() => CeylonStringMutableMap(map.clone()); put(String key, Item item) => map.put(nativeString(key), item); remove(String key) => map.remove(nativeString(key)); }