vdj_pipe
pipeline for processing DNA sequence data
Macros
comparison_operators_macro.hpp File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define VDJ_PIPE_COMPARISON_OPERATOR_MEMBERS(name)
 

Detailed Description

part of vdj_pipe project.

Distributed under GNU General Public License, Version 3; see doc/license.txt.
Copyright Mikhail K Levin 2014

Macro Definition Documentation

#define VDJ_PIPE_COMPARISON_OPERATOR_MEMBERS (   name)
Value:
bool operator!=(name const& x) const { \
return !( *this == x ); \
} \
bool operator>(name const& x) const { \
return x < *this; \
} \
bool operator<=(name const& x) const { \
return !( x < *this ); \
} \
bool operator>=(name const& x) const { \
return !( *this < x ); \
} \
/* */