[#BloombergLP-bslma-AllocatorTraits_HasPropOnMoveAssign] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslma.adoc[bslma]::AllocatorTraits_HasPropOnMoveAssign :relfileprefix: ../../ :mrdocs: This `struct` template provides a mechanism for determining whether a given (template parameter) `ALLOCATOR_TYPE` defines a nested alias named`propagate_on_container_move_assignment`. The static boolean member `value` (nested alias named `type`) is `true` (`bsl::true_type`) if `ALLOCATOR_TYPE` defines such an alias, and `false` (`bsl::false_type`) otherwise. == Synopsis Declared in `<bslma_allocatortraits.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ALLOC> struct AllocatorTraits_HasPropOnMoveAssign; ---- == Type Aliases [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bslma/AllocatorTraits_HasPropOnMoveAssign/type.adoc[`type`] | Integral constant indicating whether the trait is present. |=== == Static Data Members [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bslma/AllocatorTraits_HasPropOnMoveAssign/value.adoc[`value`] | `true` if `ALLOC` defines `propagate_on_container_move_assignment`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#