Template Class dict

Inheritance Relationships

Base Type

  • public std::unordered_map< Key, T >

Template Parameter Order

  1. typename Key

  2. typename T

Class Documentation

template<typename Key, typename T>
class dict : public std::unordered_map<Key, T>
Template Parameters
  • Key

  • T

Public Types

using value_type = std::pair<const Key, T>

Public Functions

inline dict()

Construct a new dict object.

auto operator=(Self&&) noexcept -> dict& = default
Returns

_Self&

dict(dict<Key, T>&&) noexcept = default

Move Constructor (default)

~dict() = default
dict(const dict<Key, T>&) = default

Construct a new dict object.

Copy through explicitly the public copy() function!!!