Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Concepts

Naming
Aspects
Sets and Maps
Addability, Subtractability and Aggregate on Overlap
Map Traits

The itl is about sets and maps and a useful implementation of sets and maps using intervals. In the documentation of the itl the different set and map types are grouped in various ways. In order to distinguish those groups we use a naming convention.

Names of concepts start with a capital letter. So Set and Map stand for the concepts of a set and a map as defined in the itl. When we talk about Sets and Maps though, most of the time we do not not talk about the concepts themselves but the set of types that implement those concepts in the itl. The main groups itl containers can be divided in are summarized in the next table:

  • Containers itl::set, interval_set, separate_interval_set, split_interval_set are models of concept Set.
  • Containers itl::map, interval_map, split_interval_map are models of concept Map.
  • Containers that are implemented using elements or element value pairs are called element containers.
  • Containers that are implemented using intervals or interval value pairs (also called segments) are called interval containers.
  • When we talk about Sets or Maps we abstract from the way they are implemented.
  • When we talk about element containers or interval containers we refer to the way they are implemented.
  • The itl's element containers are always denoted qualified as itl::set of itl::map to avoid confusion with std::set and std::map.

PrevUpHomeNext