Implements a general Container class with typical member functions to insert, delete and access objects from the container. The Container class serves as the base class for the Deque, Set and Dict classes (resembling 'Python's dict type). Supports iterators and, being R6 classes, reference semantics. The focus of implementation was not on speed but to define consistent class interfaces based on a meaningful class hierarchy.