import { realHashMap } from "@tsplus/stdlib/collections/HashMap/_internal/hashMap" /** * Marks the `HashMap` as immutable. * * @tsplus getter HashMap endMutation */ export function endMutation(self: HashMap): HashMap { realHashMap(self) self._editable = false return self }