Skip to content

Latest commit

 

History

History
70 lines (52 loc) · 1.81 KB

sync-per-container-class.md

File metadata and controls

70 lines (52 loc) · 1.81 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
sync_per_container Class | Microsoft Docs
11/04/2016
cpp-standard-libraries
article
allocators/stdext::sync_per_container
allocators/stdext::sync_per_container::equals
C++
sync_per_container class
0b4b2904-b668-4d94-a422-d4f919cbffab
21
corob-msft
corob
ghogen

sync_per_container Class

Describes a synchronization filter that provides a separate cache object for each allocator object.

Syntax

template <class Cache>  
class sync_per_container
 : public Cache

Parameters

Parameter Description
Cache The type of cache associated with the synchronization filter. This can be cache_chunklist, cache_freelist, or cache_suballoc.

Member Functions

equals Compares two caches for equality.

Requirements

Header: <allocators>

Namespace: stdext

sync_per_container::equals

Compares two caches for equality.

bool equals(const sync_per_container<Cache>& Other) const;

Parameters

Parameter Description
Cache The cache object of the synchronization filter.
Other The cache object to compare for equality.

Return Value

The member function always returns false.

Remarks

See Also

<allocators>