Consolidate Python ignore rules into root gitignore
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
//+------------------------------------------------------------------+
|
||||
//| IComparable.mqh |
|
||||
//| Copyright 2000-2026, MetaQuotes Ltd. |
|
||||
//| www.mql5.com |
|
||||
//+------------------------------------------------------------------+
|
||||
#include "IEqualityComparable.mqh"
|
||||
//+------------------------------------------------------------------+
|
||||
//| Interface IComparable<T>. |
|
||||
//| Usage: Defines a generalized comparison method to create a |
|
||||
//| type-specific comparison method for ordering or sorting |
|
||||
//| instances. |
|
||||
//+------------------------------------------------------------------+
|
||||
template<typename T>
|
||||
interface IComparable: public IEqualityComparable<T>
|
||||
{
|
||||
//--- method for determining compare
|
||||
int Compare(T value);
|
||||
};
|
||||
//+------------------------------------------------------------------+
|
||||
Reference in New Issue
Block a user