template<class keytype, class type>
type* FX::QDictBase< keytype, type >::find ( FXuint  h,
const keytype &  k 
) const [inline, protected, inherited]

Definition at line 183 of file qdictbase.h.

Referenced by FX::QPtrDict< type >::find(), FX::QHostAddressDict< type >::find(), and FX::QDict< type >::find().

00184     {
00185         lookups++;
00186         const keyitem *ki=findKey(h, k);
00187         if(!ki) return 0;
00188         const itemlist &il=ki->second.second;
00189         if(il.empty()) return 0;
00190         return il.back();
00191     }


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