constexpr istream_iterator();
Effects: Constructs the end-of-stream iterator. If is_trivially_default_constructible_v<T> is true, then this constructor is a constexpr constructor.
istream_iterator(istream_type& s);
Effects: Initializes in_stream with addressof(s). value may be initialized during construction or the first time it is referenced.
istream_iterator(const istream_iterator& x) = default;
Effects: Constructs a copy of x. If is_trivially_copy_constructible_v<T> is true, then this constructor is a trivial copy constructor.
~istream_iterator() = default;