//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // class istream_iterator // const T* operator->() const; #include #include #include struct A { double d_; int i_; }; std::istream& operator>>(std::istream& is, A& a) { return is >> a.d_ >> a.i_; } int main() { std::istringstream inf("1.5 23 "); std::istream_iterator i(inf); assert(i->d_ == 1.5); assert(i->i_ == 23); }