1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-localization
13 // template<class Engine, size_t k>
14 // class shuffle_order_engine
16 // template <class charT, class traits,
17 // class Engine, size_t k>
18 // basic_ostream<charT, traits>&
19 // operator<<(basic_ostream<charT, traits>& os,
20 // const shuffle_order_engine<Engine, k>& x);
22 // template <class charT, class traits,
23 // class Engine, size_t k>
24 // basic_istream<charT, traits>&
25 // operator>>(basic_istream<charT, traits>& is,
26 // shuffle_order_engine<Engine, k>& x);
32 #include "test_macros.h"
37 typedef std::knuth_b E
;
40 std::ostringstream os
;
42 std::istringstream
is(os
.str());