oprator[](i).blabla()
C++ (Qt)template <class Key, class Value>class DirectMap : private QList<QPair<Key, Value> >{public: //! Добавляем пару void append(const Key &, const Value &); //! Список ключей QList<Key> keys() const; //! Value operator[](const Key & key) const;};