0001 /****************************************************************************************** 0002 * Entry 0003 ******************************************************************************************/ 0004 template <typename K, typename V> 0005 void UniPrint::p ( Entry<K, V>& e ) //ÒýÓÃ 0006 { printf ( "-<" ); print ( e.key ); printf ( ":" ); print ( e.value ); printf ( ">-" ); }