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 #50489 is a reply to message #50485] Sun, 11 November 2018 17:20 Go to previous message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
fermium wrote on Thu, 08 November 2018 11:15
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;
		
}


Not fundamentally oposed, but I would really like to know what is the real life usage?
 
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: Fri Mar 29 08:45:09 CET 2024

Total time taken to generate the page: 0.01054 seconds