ORIGINAL
Loading...
Searching...
No Matches
set.h File Reference

Abstract base class for set container implementations. More...

#include "allocator.h"
#include "container.h"
Include dependency graph for set.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  original::set< K_TYPE, ALLOC >
 Abstract base class for unique element containers. More...
 

Namespaces

namespace  original
 Main namespace for the project Original.
 

Detailed Description

Abstract base class for set container implementations.

Provides the interface for set containers that will be implemented by concrete classes like hashSet and treeSet. The set maintains unique elements and provides efficient membership testing.

Key Features:

  • Type-safe element storage
  • Unique element guarantee (no duplicates)
  • Basic operations (add, remove)
  • Memory management through allocator support