Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Core » LRUCache has the GetLRU () method, but does not have GetLRUKey()
Re: LRUCache has the GetLRU () method, but does not have GetLRUKey() [message #50485 is a reply to message #50443] Thu, 08 November 2018 11:15 Go to previous messageGo to previous message
fermium is currently offline  fermium
Messages: 8
Registered: October 2018
Promising Member
What about IsCached()?
template <class T, class K>
bool LRUCache<T, K>::IsCached(const Maker& m)
{
	Key k;
	k.key = m.Key();
	k.type = &typeid(m);
	int q = key.Find(k);
	if(q < 0)
		return false;
	else
		return true;
		
}
 
Read Message
Read Message
Read Message
Read Message
Previous Topic: XmlParser::IsEnd() should be declared as const
Next Topic: Error in DUMP_ declaration
Goto Forum:
  


Current Time: Sat Apr 20 07:49:47 CEST 2024

Total time taken to generate the page: 0.06573 seconds