template<int len>
FXStream& operator<< ( FXStream s,
const MapBools< len >  i 
) throw () [friend]

Definition at line 2300 of file FXGenericTools.h.

02301     {
02302         holdtype val=0;
02303         for(int n=len-1; n>=0; n--)
02304         {
02305             val=(val<<1)|((FXuchar)i.base[n]);
02306         }
02307         s << val;
02308         return s;
02309     }


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:37:58 2009 for TnFOX by doxygen v1.4.7