"""
Selected items from the C++ C{std::} namespace.

The C{std} module wraps a small number of items from the C++ C{std::}
namespace for use in testing the other python bindings in the C{simbios}
package.  This module is not intended to be a comprehensive wrapping of
the C++ standard library.
"""
__docformat__ = "epytext en"

__author__ = "Christopher M. Bruns"
__copyright__ = "Copyright 2010, Stanford University and Christopher M. Bruns"
__credits__ = []
__license__ = "MIT"
__maintainer__ = "Christopher M. Bruns"
__email__ = "cmbruns@stanford.edu"

from _std import *

pair = dict()
pair[int] = dict()
pair[int][int] = pair_int_int

# Syntactical sugar for accessing containers
vector = dict()
vector[string] = vector_string
vector[float] = vector_double
vector[vector[float]] = vector_vector_double
vector[int] = vector_int

