sources/range.h

branch
protocol5
changeset 106
7b156b764d11
parent 88
08ccaf26cffd
child 109
e4966d7e615d
equal deleted inserted replaced
104:a76af67a3a4b 106:7b156b764d11
29 */ 29 */
30 30
31 #pragma once 31 #pragma once
32 #include <algorithm> 32 #include <algorithm>
33 #include <memory> 33 #include <memory>
34 #include "basics.h"
35 BEGIN_ZFC_NAMESPACE
34 36
35 // 37 //
36 // ------------------------------------------------------------------------------------------------- 38 // -------------------------------------------------------------------------------------------------
37 // 39 //
38 40
145 bool operator!= (Range<T> const& other) const 147 bool operator!= (Range<T> const& other) const
146 { 148 {
147 return not operator== (other); 149 return not operator== (other);
148 } 150 }
149 }; 151 };
152
153 END_ZFC_NAMESPACE

mercurial