HashMap.dup

Copy an existing map into a new mutable map.

struct HashMap(K, V)
@safe pure nothrow
HashMap!(K, V)
dup
const
(
)
if (
isAssignmentCopyable!(Unqual!K) &&
isAssignmentCopyable!(Unqual!V)
)

Return Value

Type: HashMap!(K, V)

The fresh copy of the map.

Meta