//+------------------------------------------------------------------+ //| IMap.mqh | //| Copyright 2000-2025, MetaQuotes Ltd. | //| https://www.mql5.com | //+------------------------------------------------------------------+ #include "ICollection.mqh" template class CKeyValuePair; //+------------------------------------------------------------------+ //| Interface IMap. | //| Usage: Represents a generic collection of key/value pairs. | //+------------------------------------------------------------------+ template interface IMap: public ICollection*> { //--- methods of filling data bool Add(TKey key,TValue value); //--- methods of access to protected data bool Contains(TKey key,TValue value); bool Remove(TKey key); //--- method of access to the data bool TryGetValue(TKey key,TValue &value); bool TrySetValue(TKey key,TValue value); //--- methods of copy data from collection int CopyTo(TKey &dst_keys[],TValue &dst_values[],const int dst_start=0); }; //+------------------------------------------------------------------+