Home
last modified time | relevance | path

Searched refs:seq (Results 1 – 25 of 1359) sorted by relevance

12345678910>>...55

/third_party/boost/boost/parameter/aux_/preprocessor/
Dbinary_seq_for_each_inc.hpp13 #define BOOST_PARAMETER_AUX_PP_BINARY_SEQ_FOR_EACH_INC_1_N(r, seq) \ argument
15 BOOST_PARAMETER_AUX_PP_INC_BINARY_SEQ(BOOST_PP_SEQ_TAIL(seq)) \
16 , BOOST_PP_SEQ_HEAD(seq) \
24 #define BOOST_PARAMETER_AUX_PP_BINARY_SEQ_FOR_EACH_INC_2_N(r, seq) \ argument
26 BOOST_PP_SEQ_FIRST_N(2, seq) \
27 , BOOST_PARAMETER_AUX_PP_INC_BINARY_SEQ(BOOST_PP_SEQ_REST_N(2, seq)) \
31 #define BOOST_PARAMETER_AUX_PP_BINARY_SEQ_FOR_EACH_INC_3_N(r, seq) \ argument
33 BOOST_PP_SEQ_FIRST_N(3, seq) \
34 , BOOST_PARAMETER_AUX_PP_INC_BINARY_SEQ(BOOST_PP_SEQ_REST_N(3, seq)) \
38 #define BOOST_PARAMETER_AUX_PP_BINARY_SEQ_FOR_EACH_INC_4_N(r, seq) \ argument
[all …]
Dfor_each_pred.hpp12 #define BOOST_PARAMETER_AUX_PP_FOR_EACH_PRED_1(r, seq) \ argument
13 BOOST_PP_NOT_EQUAL(2, BOOST_PP_SEQ_SIZE(seq))
16 #define BOOST_PARAMETER_AUX_PP_FOR_EACH_PRED_2(r, seq) \ argument
17 BOOST_PP_NOT_EQUAL(3, BOOST_PP_SEQ_SIZE(seq))
20 #define BOOST_PARAMETER_AUX_PP_FOR_EACH_PRED_3(r, seq) \ argument
21 BOOST_PP_NOT_EQUAL(4, BOOST_PP_SEQ_SIZE(seq))
24 #define BOOST_PARAMETER_AUX_PP_FOR_EACH_PRED_4(r, seq) \ argument
25 BOOST_PP_NOT_EQUAL(5, BOOST_PP_SEQ_SIZE(seq))
28 #define BOOST_PARAMETER_AUX_PP_FOR_EACH_PRED_5(r, seq) \ argument
29 BOOST_PP_NOT_EQUAL(6, BOOST_PP_SEQ_SIZE(seq))
[all …]
/third_party/boost/libs/iostreams/test/
Doperation_sequence_test.cpp34 operation_sequence seq; in operation_sequence_test() local
35 operation op = seq.new_operation(1); in operation_sequence_test()
36 BOOST_CHECK_THROW(seq.new_operation(1), runtime_error); in operation_sequence_test()
41 operation_sequence seq; in operation_sequence_test() local
42 seq.new_operation(1); in operation_sequence_test()
43 BOOST_CHECK_NO_THROW(seq.new_operation(1)); in operation_sequence_test()
48 operation_sequence seq; in operation_sequence_test() local
49 BOOST_CHECK_THROW(seq.new_operation(1, -100), runtime_error); in operation_sequence_test()
51 seq.new_operation(1, BOOST_IOSTREAMS_TEST_MAX_OPERATION_ERROR + 1), in operation_sequence_test()
58 operation_sequence seq; in operation_sequence_test() local
[all …]
Dclose_test.cpp36 operation_sequence seq; in input_chain_test() local
40 ch.push(closable_filter<input>(seq.new_operation(2))); in input_chain_test()
41 ch.push(closable_device<input>(seq.new_operation(1))); in input_chain_test()
43 BOOST_CHECK_OPERATION_SEQUENCE(seq); in input_chain_test()
46 seq.reset(); in input_chain_test()
47 ch.push(closable_device<input>(seq.new_operation(1))); in input_chain_test()
49 BOOST_CHECK_OPERATION_SEQUENCE(seq); in input_chain_test()
52 seq.reset(); in input_chain_test()
53 ch.push(closable_device<input>(seq.new_operation(1))); in input_chain_test()
55 BOOST_CHECK_OPERATION_SEQUENCE(seq); in input_chain_test()
[all …]
Dcompose_test.cpp113 operation_sequence seq; in close_composite_device() local
117 closable_filter<input>(seq.new_operation(2)), in close_composite_device()
118 closable_device<input>(seq.new_operation(1)) in close_composite_device()
122 BOOST_CHECK_OPERATION_SEQUENCE(seq); in close_composite_device()
127 operation_sequence seq; in close_composite_device() local
132 seq.new_operation(2), in close_composite_device()
133 seq.new_operation(3) in close_composite_device()
135 closable_device<input>(seq.new_operation(1)) in close_composite_device()
139 BOOST_CHECK_OPERATION_SEQUENCE(seq); in close_composite_device()
144 operation_sequence seq; in close_composite_device() local
[all …]
Dcombine_test.cpp34 operation_sequence seq; in combine_test() local
38 closable_device<input>(seq.new_operation(1)), in combine_test()
39 closable_device<output>(seq.new_operation(2)) in combine_test()
43 BOOST_CHECK_OPERATION_SEQUENCE(seq); in combine_test()
48 operation_sequence seq; in combine_test() local
53 seq.new_operation(1), in combine_test()
54 seq.new_operation(2) in combine_test()
57 seq.new_operation(3), in combine_test()
58 seq.new_operation(4) in combine_test()
63 BOOST_CHECK_OPERATION_SEQUENCE(seq); in combine_test()
[all …]
Dtee_test.cpp153 operation_sequence seq; in close_test() local
157 closable_device<output>(seq.new_operation(1)), in close_test()
164 >(seq.new_operation(2)) in close_test()
168 BOOST_CHECK_OPERATION_SEQUENCE(seq); in close_test()
173 operation_sequence seq; in close_test() local
178 seq.new_operation(1), in close_test()
179 seq.new_operation(2) in close_test()
182 seq.new_operation(3), in close_test()
183 seq.new_operation(4) in close_test()
188 BOOST_CHECK_OPERATION_SEQUENCE(seq); in close_test()
[all …]
Dexecute_test.cpp523 int seq[] = {-1, -1}; in foreach_test() local
525 execute_foreach(seq, seq + ARRAY_SIZE(seq), foreach_func(count)) in foreach_test()
527 BOOST_CHECK(count == ARRAY_SIZE(seq)); in foreach_test()
533 int seq[] = {0, -1}; in foreach_test() local
535 execute_foreach(seq, seq + ARRAY_SIZE(seq), foreach_func(count)), in foreach_test()
538 BOOST_CHECK(count == ARRAY_SIZE(seq)); in foreach_test()
544 int seq[] = {-1, 1}; in foreach_test() local
546 execute_foreach(seq, seq + ARRAY_SIZE(seq), foreach_func(count)), in foreach_test()
549 BOOST_CHECK(count == ARRAY_SIZE(seq)); in foreach_test()
555 int seq[] = {0, 1}; in foreach_test() local
[all …]
/third_party/glib/glib/tests/
Dsequence.c59 g_sequence_check (GSequence *seq) in g_sequence_check() argument
61 GSequenceNode *node = seq->end_node; in g_sequence_check()
71 g_assert (seq->end_node == node); in g_sequence_check()
72 g_assert (node->data == seq); in g_sequence_check()
107 SequenceInfo *seq; member
150 g_assert (item->seq == info); in check_integrity()
162 new_item (SequenceInfo *seq) in new_item() argument
165 seq->n_items++; in new_item()
166 item->seq = seq; in new_item()
180 item->seq->n_items--; in free_item()
[all …]
/third_party/libwebsockets/lib/core-net/
Dsequencer.c101 lws_seq_t *seq = lws_zalloc(sizeof(*seq) + i->user_size, __func__); in lws_seq_create() local
103 if (!seq) in lws_seq_create()
106 seq->cb = i->cb; in lws_seq_create()
107 seq->pt = pt; in lws_seq_create()
108 seq->name = i->name; in lws_seq_create()
109 seq->retry = i->retry; in lws_seq_create()
110 seq->wakesuspend = i->wakesuspend; in lws_seq_create()
112 *i->puser = (void *)&seq[1]; in lws_seq_create()
118 lws_dll2_add_tail(&seq->seq_list, &pt->seq_owner); in lws_seq_create()
122 seq->time_created = lws_now_usecs(); in lws_seq_create()
[all …]
/third_party/alsa-lib/src/seq/
Dseq.c800 const char *snd_seq_name(snd_seq_t *seq) in snd_seq_name() argument
802 assert(seq); in snd_seq_name()
803 return seq->name; in snd_seq_name()
815 snd_seq_type_t snd_seq_type(snd_seq_t *seq) in snd_seq_type() argument
817 assert(seq); in snd_seq_type()
818 return seq->type; in snd_seq_type()
1043 int snd_seq_close(snd_seq_t *seq) in snd_seq_close() argument
1046 assert(seq); in snd_seq_close()
1047 err = seq->ops->close(seq); in snd_seq_close()
1048 if (seq->dl_handle) in snd_seq_close()
[all …]
Dseq_hw.c43 static int snd_seq_hw_close(snd_seq_t *seq) in snd_seq_hw_close() argument
45 snd_seq_hw_t *hw = seq->private_data; in snd_seq_hw_close()
56 static int snd_seq_hw_nonblock(snd_seq_t *seq, int nonblock) in snd_seq_hw_nonblock() argument
58 snd_seq_hw_t *hw = seq->private_data; in snd_seq_hw_nonblock()
76 static int snd_seq_hw_client_id(snd_seq_t *seq) in snd_seq_hw_client_id() argument
78 snd_seq_hw_t *hw = seq->private_data; in snd_seq_hw_client_id()
87 static int snd_seq_hw_system_info(snd_seq_t *seq, snd_seq_system_info_t * info) in snd_seq_hw_system_info() argument
89 snd_seq_hw_t *hw = seq->private_data; in snd_seq_hw_system_info()
97 static int snd_seq_hw_get_client_info(snd_seq_t *seq, snd_seq_client_info_t * info) in snd_seq_hw_get_client_info() argument
99 snd_seq_hw_t *hw = seq->private_data; in snd_seq_hw_get_client_info()
[all …]
Dseq_local.h39 int (*close)(snd_seq_t *seq);
40 int (*nonblock)(snd_seq_t *seq, int nonblock);
41 int (*system_info)(snd_seq_t *seq, snd_seq_system_info_t * info);
42 int (*get_client_info)(snd_seq_t *seq, snd_seq_client_info_t * info);
43 int (*set_client_info)(snd_seq_t *seq, snd_seq_client_info_t * info);
44 int (*create_port)(snd_seq_t *seq, snd_seq_port_info_t * port);
45 int (*delete_port)(snd_seq_t *seq, snd_seq_port_info_t * port);
46 int (*get_port_info)(snd_seq_t *seq, snd_seq_port_info_t * info);
47 int (*set_port_info)(snd_seq_t *seq, snd_seq_port_info_t * info);
48 int (*get_port_subscription)(snd_seq_t *seq, snd_seq_port_subscribe_t * sub);
[all …]
Dseqmid.c48 int snd_seq_control_queue(snd_seq_t *seq, int q, int type, int value, snd_seq_event_t *ev) in snd_seq_control_queue() argument
57 return snd_seq_event_output(seq, ev); in snd_seq_control_queue()
73 int snd_seq_create_simple_port(snd_seq_t *seq, const char *name, in snd_seq_create_simple_port() argument
88 result = snd_seq_create_port(seq, &pinfo); in snd_seq_create_simple_port()
103 int snd_seq_delete_simple_port(snd_seq_t *seq, int port) in snd_seq_delete_simple_port() argument
105 return snd_seq_delete_port(seq, port); in snd_seq_delete_simple_port()
121 int snd_seq_connect_from(snd_seq_t *seq, int myport, int src_client, int src_port) in snd_seq_connect_from() argument
129 subs.dest.client = snd_seq_client_id(seq); in snd_seq_connect_from()
132 return snd_seq_subscribe_port(seq, &subs); in snd_seq_connect_from()
148 int snd_seq_connect_to(snd_seq_t *seq, int myport, int dest_client, int dest_port) in snd_seq_connect_to() argument
[all …]
/third_party/ffmpeg/libavformat/
Dtiertexseq.c83 static int seq_init_frame_buffers(SeqDemuxContext *seq, AVIOContext *pb) in seq_init_frame_buffers() argument
95 seq_buffer = &seq->frame_buffers[i]; in seq_init_frame_buffers()
103 seq->frame_buffers_count = i; in seq_init_frame_buffers()
107 static int seq_fill_buffer(SeqDemuxContext *seq, AVIOContext *pb, int buffer_num, unsigned int data… in seq_fill_buffer() argument
114 seq_buffer = &seq->frame_buffers[buffer_num]; in seq_fill_buffer()
118 avio_seek(pb, seq->current_frame_offs + data_offs, SEEK_SET); in seq_fill_buffer()
126 static int seq_parse_frame_data(SeqDemuxContext *seq, AVIOContext *pb) in seq_parse_frame_data() argument
132 seq->current_frame_offs += SEQ_FRAME_SIZE; in seq_parse_frame_data()
133 avio_seek(pb, seq->current_frame_offs, SEEK_SET); in seq_parse_frame_data()
136 seq->current_audio_data_offs = avio_rl16(pb); in seq_parse_frame_data()
[all …]
/third_party/boost/boost/preprocessor/seq/
Dfor_each.hpp29 # define BOOST_PP_SEQ_FOR_EACH(macro, data, seq) BOOST_PP_SEQ_FOR_EACH_DETAIL_CHECK(macro, data,… argument
31 # define BOOST_PP_SEQ_FOR_EACH(macro, data, seq) BOOST_PP_SEQ_FOR_EACH_D(macro, data, seq) argument
32 … define BOOST_PP_SEQ_FOR_EACH_D(macro, data, seq) BOOST_PP_SEQ_FOR_EACH_DETAIL_CHECK(macro, dat… argument
35 …PP_SEQ_FOR_EACH_DETAIL_CHECK_EXEC(macro, data, seq) BOOST_PP_FOR((macro, data, seq, BOOST_PP_SEQ_S… argument
36 # define BOOST_PP_SEQ_FOR_EACH_DETAIL_CHECK_EMPTY(macro, data, seq) argument
38 # define BOOST_PP_SEQ_FOR_EACH_DETAIL_CHECK(macro, data, seq) \ argument
41 BOOST_PP_SEQ_DETAIL_IS_NOT_EMPTY(seq), \
45 (macro, data, seq) \
56 # define BOOST_PP_SEQ_FOR_EACH_O_I(macro, data, seq, sz) \ argument
57 BOOST_PP_SEQ_FOR_EACH_O_I_DEC(macro, data, seq, BOOST_PP_DEC(sz)) \
[all …]
Dfor_each_i.hpp30 … define BOOST_PP_SEQ_FOR_EACH_I(macro, data, seq) BOOST_PP_SEQ_FOR_EACH_I_DETAIL_CHECK(macro, da… argument
32 # define BOOST_PP_SEQ_FOR_EACH_I(macro, data, seq) BOOST_PP_SEQ_FOR_EACH_I_I(macro, data, seq) argument
33 … define BOOST_PP_SEQ_FOR_EACH_I_I(macro, data, seq) BOOST_PP_SEQ_FOR_EACH_I_DETAIL_CHECK(macro, da… argument
36 …SEQ_FOR_EACH_I_DETAIL_CHECK_EXEC(macro, data, seq) BOOST_PP_FOR((macro, data, seq, 0, BOOST_PP_SEQ… argument
37 # define BOOST_PP_SEQ_FOR_EACH_I_DETAIL_CHECK_EMPTY(macro, data, seq) argument
39 # define BOOST_PP_SEQ_FOR_EACH_I_DETAIL_CHECK(macro, data, seq) \ argument
42 BOOST_PP_SEQ_DETAIL_IS_NOT_EMPTY(seq), \
46 (macro, data, seq) \
57 # define BOOST_PP_SEQ_FOR_EACH_I_O_I(macro, data, seq, i, sz) \ argument
58 BOOST_PP_SEQ_FOR_EACH_I_O_I_DEC(macro, data, seq, i, BOOST_PP_DEC(sz)) \
[all …]
/third_party/glib/glib/
Dgsequence.c154 GSequence *seq);
172 check_seq_access (GSequence *seq) in check_seq_access() argument
174 if (G_UNLIKELY (seq->access_prohibited)) in check_seq_access()
188 seq_is_end (GSequence *seq, in seq_is_end() argument
191 return seq->end_node == iter; in seq_is_end()
265 GSequence *seq = g_new (GSequence, 1); in g_sequence_new() local
266 seq->data_destroy_notify = data_destroy; in g_sequence_new()
268 seq->end_node = node_new (seq); in g_sequence_new()
270 seq->access_prohibited = FALSE; in g_sequence_new()
272 seq->real_sequence = seq; in g_sequence_new()
[all …]
/third_party/boost/boost/xpressive/detail/dynamic/
Ddynamic.hpp94 virtual void repeat(quant_spec const &spec, sequence<BidiIter> &seq) const in repeat()
96 this->repeat_(spec, seq, quant_type<Matcher>(), is_same<Matcher, mark_begin_matcher>()); in repeat()
112 …void repeat_(quant_spec const &spec, sequence<BidiIter> &seq, mpl::int_<quant_none>, mpl::false_) … in repeat_()
114 if(quant_none == seq.quant()) in repeat_()
122 this->repeat_(spec, seq, mpl::int_<quant_variable_width>(), mpl::false_()); in repeat_()
126 …void repeat_(quant_spec const &spec, sequence<BidiIter> &seq, mpl::int_<quant_fixed_width>, mpl::f… in repeat_()
130 make_simple_repeat(spec, seq, matcher_wrapper<Matcher>(*this)); in repeat_()
134 this->repeat_(spec, seq, mpl::int_<quant_variable_width>(), mpl::false_()); in repeat_()
138 …void repeat_(quant_spec const &spec, sequence<BidiIter> &seq, mpl::int_<quant_variable_width>, mpl… in repeat_()
140 if(!is_unknown(seq.width()) && seq.pure()) in repeat_()
[all …]
/third_party/boost/libs/hana/test/_include/laws/templates/
Dseq.hpp29 ::seq() in main()
30 , ::seq(ct_eq<0>{}) in main()
31 , ::seq(ct_eq<0>{}, ct_eq<1>{}) in main()
32 , ::seq(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}) in main()
33 , ::seq(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}) in main()
38 ::seq() in main()
39 , ::seq( in main()
40 ::seq(ct_eq<0>{})) in main()
41 , ::seq( in main()
42 ::seq(ct_eq<0>{}), in main()
[all …]
/third_party/boost/libs/fusion/test/sequence/
Dgithub-176.cpp21 Sequence seq; in test_at() local
24 BOOST_TEST(boost::fusion::at_c<0>(seq)[0] == 0); in test_at()
25 BOOST_TEST(boost::fusion::at_c<0>(seq)[1] == 0); in test_at()
26 BOOST_TEST(boost::fusion::at_c<0>(seq)[2] == 0); in test_at()
28 int (&arr)[3] = boost::fusion::deref(boost::fusion::begin(seq)); in test_at()
34 BOOST_TEST(boost::fusion::at_c<0>(seq)[0] == 2); in test_at()
35 BOOST_TEST(boost::fusion::at_c<0>(seq)[1] == 4); in test_at()
36 BOOST_TEST(boost::fusion::at_c<0>(seq)[2] == 6); in test_at()
38 boost::fusion::at_c<0>(seq)[1] = 42; in test_at() local
40 BOOST_TEST(boost::fusion::at_c<0>(seq)[0] == 2); in test_at()
[all …]
/third_party/boost/boost/parameter/aux_/preprocessor/impl/
Dforwarding_overloads.hpp240 #define BOOST_PARAMETER_DEFAULT_CONSTRUCTOR(z, n, seq) \ argument
242 BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)))() \
245 2, 1, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)) \
258 #define BOOST_PARAMETER_FUNCTION_FORWARD_OVERLOAD_0_ARITY(z, n, seq) \ argument
261 4, 1, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)) \
266 4, 1, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)) \
269 4, 3, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)) \
275 4, 1, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)) \
278 4, 3, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)) \
285 4, 0, BOOST_PP_SEQ_HEAD(BOOST_PP_SEQ_TAIL(seq)) \
[all …]
/third_party/alsa-utils/seq/aconnect/
Daconnect.c99 static void list_each_subs(snd_seq_t *seq, snd_seq_query_subscribe_t *subs, int type, const char *m… in list_each_subs() argument
104 while (snd_seq_query_port_subscribers(seq, subs) >= 0) { in list_each_subs()
127 static void list_subscribers(snd_seq_t *seq, const snd_seq_addr_t *addr) in list_subscribers() argument
132 list_each_subs(seq, subs, SND_SEQ_QUERY_SUBS_READ, _("Connecting To")); in list_subscribers()
133 list_each_subs(seq, subs, SND_SEQ_QUERY_SUBS_WRITE, _("Connected From")); in list_subscribers()
139 typedef void (*action_func_t)(snd_seq_t *seq, snd_seq_client_info_t *cinfo, snd_seq_port_info_t *pi…
141 static void do_search_port(snd_seq_t *seq, int perm, action_func_t do_action) in do_search_port() argument
150 while (snd_seq_query_next_client(seq, cinfo) >= 0) { in do_search_port()
155 while (snd_seq_query_next_port(seq, pinfo) >= 0) { in do_search_port()
157 do_action(seq, cinfo, pinfo, count); in do_search_port()
[all …]
/third_party/boost/libs/fusion/test/functional/
Dinvoke_procedure.cpp221 void test_sequence_n(Sequence & seq, mpl::int_<0>) in test_sequence_n() argument
227 COMPARE_EFFECT(f (), fusion::invoke_procedure(f , seq )); in test_sequence_n()
228 COMPARE_EFFECT(f (), fusion::invoke_procedure(f , const_(seq))); in test_sequence_n()
233 COMPARE_EFFECT(const_(f)(), fusion::invoke_procedure<fobj const >(const_(f), seq )); in test_sequence_n()
234 COMPARE_EFFECT(const_(f)(), fusion::invoke_procedure<fobj const &>(const_(f), const_(seq))); in test_sequence_n()
239 COMPARE_EFFECT(nc_f (), fusion::invoke_procedure<fobj_nc &>(nc_f , seq )); in test_sequence_n()
240 COMPARE_EFFECT(nc_f (), fusion::invoke_procedure<fobj_nc &>(nc_f , const_(seq))); in test_sequence_n()
241 …MPARE_EFFECT(const_(nc_f)(), fusion::invoke_procedure<fobj_nc const &>(const_(nc_f), seq )); in test_sequence_n()
242 …MPARE_EFFECT(const_(nc_f)(), fusion::invoke_procedure<fobj_nc const &>(const_(nc_f), const_(seq))); in test_sequence_n()
247 COMPARE_EFFECT(nullary(), fusion::invoke_procedure<int (&)()>(nullary, seq)); in test_sequence_n()
[all …]
/third_party/boost/libs/fusion/test/algorithm/
Dfind.cpp32 seq_type seq(12345, 'x', 678910, 3.36); in main() local
34 std::cout << *boost::fusion::find<char>(seq) << std::endl; in main()
35 BOOST_TEST(*boost::fusion::find<char>(seq) == 'x'); in main()
37 std::cout << *boost::fusion::find<int>(seq) << std::endl; in main()
38 BOOST_TEST(*boost::fusion::find<int>(seq) == 12345); in main()
40 std::cout << *boost::fusion::find<double>(seq) << std::endl; in main()
41 BOOST_TEST(*boost::fusion::find<double>(seq) == 3.36); in main()
43 BOOST_TEST(boost::fusion::find<bool>(seq) == boost::fusion::end(seq)); in main()
48 seq_type seq(12345, 'x', 3.36); in main() local
49 std::cout << *boost::fusion::find<char>(seq) << std::endl; in main()
[all …]

12345678910>>...55