Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 1.47 KB

File metadata and controls

62 lines (41 loc) · 1.47 KB
description Learn more about: sync_per_container Class
title sync_per_container Class
ms.date 11/04/2016
f1_keywords
allocators/stdext::sync_per_container
allocators/stdext::sync_per_container::equals
helpviewer_keywords
sync_per_container class
ms.assetid 0b4b2904-b668-4d94-a422-d4f919cbffab

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

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

Member functions

Member function Description
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

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>