Create a FlatHashSet object having the same value, hasher, and equality comparator as the specified original object, using the specified basicAllocator to supply memory. If basicAllocator is 0, the currently installed default allocator is used. The allocator of original remains unchanged. If original and the newly created object have the same allocator then the contents of original are moved (in constant time) to this object, original is left in a (valid) unspecified state, and no exceptions will be thrown; otherwise original is unchanged (and an exception may be thrown).
Synopsis
Declared in <bdlc_flathashset.h>
FlatHashSet(
bslmf::MovableRef<FlatHashSet> original,
bslma::Allocator* basicAllocator);
Created with MrDocs