import { realHashMap } from "@tsplus/stdlib/collections/HashMap/_internal/hashMap" /** * Returns the number of entries within the `HashMap`. * * @tsplus getter HashMap size */ export function size(self: HashMap): number { realHashMap(self) return self._size }