insertion overloading in c 2b 2b

Solutions on MaxInterview for insertion overloading in c 2b 2b by the best coders in the world

showing results for - "insertion overloading in c 2b 2b"
Elora
21 Jan 2016
1//<<<<<<<<<<<<<<<<<<<<<<<<<<<insertion operator overloading<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Amir Ammar
2std::ostream& operator<<(std::ostream& out, const Bigint& i){
3  for(auto b = i.m_digits.begin(); b != i.m_digits.end(); ++b){
4    out<<(*b);
5  }
6  return (out);
7}
8