00001 #ifndef Impala_Core_Array_Trait_BpoMaxAssign_h 00002 #define Impala_Core_Array_Trait_BpoMaxAssign_h 00003 00004 #include "Core/Array/Pattern/Categories.h" 00005 #include "Core/Array/Element/E0SmallVal.h" 00006 00007 namespace Impala 00008 { 00009 namespace Core 00010 { 00011 namespace Array 00012 { 00013 namespace Trait 00014 { 00015 00016 00019 template<class DstArrayT, class SrcArrayT> 00020 struct BpoMaxAssign 00021 { 00023 typedef Pattern::TagTransInVar TransVarianceCategory; 00024 00026 typedef Pattern::TagCallValue CallCategory; 00027 00028 typedef typename DstArrayT::ArithType DstArithT; 00029 typedef typename SrcArrayT::ArithType SrcArithT; 00030 00032 BpoMaxAssign() 00033 { 00034 } 00035 00037 void 00038 DoIt(DstArithT& x, const SrcArithT& y) 00039 { 00040 x = Impala::Max(x, y); 00041 } 00042 00043 static DstArithT 00044 NeutralElement() 00045 { 00046 return Element::E0SmallVal<DstArithT>(DstArithT()); 00047 } 00048 00049 }; 00050 00051 } // namespace Trait 00052 } // namespace Array 00053 } // namespace Core 00054 } // namespace Impala 00055 00056 #endif