comparison liboctave/fNDArray.cc @ 9578:7dafdb8b062f

refactor comparison ops implementations
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 27 Aug 2009 11:19:33 +0200
parents 0c72d9284087
children a9b37bae1802
comparison
equal deleted inserted replaced
9577:b03062e16c6f 9578:7dafdb8b062f
1072 } 1072 }
1073 1073
1074 return result; 1074 return result;
1075 } 1075 }
1076 1076
1077 NDS_CMP_OPS(FloatNDArray, , float, ) 1077 NDS_CMP_OPS (FloatNDArray, float)
1078 NDS_BOOL_OPS (FloatNDArray, float) 1078 NDS_BOOL_OPS (FloatNDArray, float)
1079 1079
1080 SND_CMP_OPS(float, , FloatNDArray, ) 1080 SND_CMP_OPS (float, FloatNDArray)
1081 SND_BOOL_OPS (float, FloatNDArray) 1081 SND_BOOL_OPS (float, FloatNDArray)
1082 1082
1083 NDND_CMP_OPS(FloatNDArray, , FloatNDArray, ) 1083 NDND_CMP_OPS (FloatNDArray, FloatNDArray)
1084 NDND_BOOL_OPS (FloatNDArray, FloatNDArray) 1084 NDND_BOOL_OPS (FloatNDArray, FloatNDArray)
1085 1085
1086 /* 1086 /*
1087 ;;; Local Variables: *** 1087 ;;; Local Variables: ***
1088 ;;; mode: C++ *** 1088 ;;; mode: C++ ***