DynamicArray.toHash

Calculate D associative array (AA) key hash.

struct DynamicArray(T, Allocator = Mallocator, Capacity = size_t)
pragma(inline, true) const scope
@trusted => .hashOf(length) + .hashOf(opSlice())
hash_t
toHash
()
()
if (
!is(immutable T == immutable bool) &&
(
is(Capacity == ulong) ||
is(Capacity == uint)
)
&&
isAllocator!Allocator
)

Meta