Click here to Skip to main content
15,892,674 members
Articles / Programming Languages / C++

An Introduction to "Iterator Traits"

Rate me:
Please Sign up or sign in to vote.
4.91/5 (37 votes)
17 May 2009CPOL6 min read 70.7K   50  
This article is about how to use iterator traits for writing generic function for any kind of iterator seamlessly

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Rebaca Technologies
India India
int main(){
while(!isSleeping())
{
write_code();
}
return 0;
}

Comments and Discussions