-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfunctional.hpp
837 lines (736 loc) · 22 KB
/
functional.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
/**
* @file functional.hpp
* @brief 實作 std::function 的簡易版
* @author ToyAuthor
* @copyright Public Domain
* <pre>
* 用法參考 std::function 或 boost::function 都可以
*
* http://github.com/ToyAuthor/functional
* </pre>
*/
#ifndef _STD_FUNCTIONAL_HPP_
#define _STD_FUNCTIONAL_HPP_
// 判斷編譯器是否為C++11,是就改用標準庫吧
#if __cplusplus > 201100L
#include <functional>
#else
#include <bind.hpp>
namespace std{
namespace _functional{
/// function物件的核心所在< 函式回傳值的型態 , storage的種類 >
template<typename R, typename S>
struct core_base
{
virtual ~core_base(){}
virtual core_base* clone() const=0; // 幫助function物件copy自己
virtual R CallFunction(const S &s) const=0; // 執行function內容
virtual void SetObject(void *p){} // 為了從外部輸入物件指標而設計的
};
/// 支援一般函式< return type , storage type , _functional pointer type >
template<typename R, typename S, typename F>
struct core_function : core_base< R, S >
{
const F _f; // 一般函式的指標
explicit core_function(const F &f):_f(f){}
virtual core_base<R,S>* clone() const
{
return new core_function(_f);
}
R CallFunction(const S &s) const
{
return s.Do(type<R>(),_f);
}
};
/// 偽裝成一般函式指標,但是內含物件指標,真正執行的是成員函式< return type , member function pointer , claas type >
template<typename R, typename F, typename C>
struct member_function
{
explicit member_function(const member_function &other):pFunction(other.pFunction),pObject(other.pObject){}
explicit member_function(const F &f):pFunction(f),pObject(0){}
explicit member_function():pFunction(0),pObject(0){}
const F pFunction; // 成員函式的指標
C* pObject; // 物件指標
inline void set_this(void *app)
{
pObject=static_cast<C*>(app);
}
inline R operator()() const
{
// 日後有必要在這裡檢查指標
return (pObject->*pFunction)();
}
template<typename A1>
inline R operator()(A1 a1) const
{
return (pObject->*pFunction)(a1);
}
template<typename A1, typename A2>
inline R operator()(A1 a1,A2 a2) const
{
return (pObject->*pFunction)(a1,a2);
}
template<typename A1, typename A2, typename A3>
inline R operator()(A1 a1,A2 a2,A3 a3) const
{
return (pObject->*pFunction)(a1,a2,a3);
}
template<typename A1, typename A2, typename A3, typename A4>
inline R operator()(A1 a1,A2 a2,A3 a3,A4 a4) const
{
return (pObject->*pFunction)(a1,a2,a3,a4);
}
};
/// 支援成員函式< 回傳值type, storage type , 真正有用的storage , member_function , 類別type >
template<typename R, typename S, typename F, typename C>
struct core_member_function : core_base< R, S >
{
F _f; // 只能夠是member_function<>了,不能放其他的
explicit core_member_function(const F &f):_f(f){}
virtual core_base<R,S>* clone() const
{
return new core_member_function(_f);
}
R CallFunction(const S &s) const
{
return s.Do(type<R>(),_f);
}
void SetObject(void *app)
{
_f.set_this(app);
}
};
/// 支援std::bind()< bind_t的種類 , storage的種類 >
template<typename T, typename S>
struct core_bind : core_base< typename T::result_type, S >
{
typedef typename T::result_type result_type;
const T obj; // 用來儲存bind_t物件
explicit core_bind(const T &b):obj(b){}
virtual core_base<result_type,S>* clone() const
{
return new core_bind(obj);
}
virtual result_type CallFunction(const S &s) const
{
return obj.eval(s);
}
};
}//namespace _functional
/// function_base是下面各種function類別的共同基底,負責實現所有function都會需要的共同特徵< 函式回傳值的型態 , storage的種類 >
template<typename R, typename S> struct function_base
{
function_base():pCore(0){}
~function_base(){delete pCore;}
operator bool () const
{
if ( pCore )
{
return true;
}
return false;
}
_functional::core_base<R,S> *pCore; // 外部使用者不該修改此指標,該老慮要不要"protected"起來了
// 用來輸入物件指標
template<typename C>
inline void set(C* c)
{
pCore->SetObject((void*)(c));
}
//----讓function物件可以像普通結構一樣的複製、傳遞----start
function_base(const function_base &other)
{
if (other.pCore)
{
pCore = other.pCore->clone();
}
// 這邊沒有else的處理感覺比較危險
}
function_base& operator=(const function_base &other)
{
delete pCore;
pCore = other.pCore ? other.pCore->clone() : other.pCore;
return *this;
}
//----讓function物件可以像普通結構一樣的複製、傳遞----end
};
/// function的樣板原型,沒有用處,真正有用的是它的偏特化版本
template<typename S> struct function{};
//---------------------------function類別們---------------------------start
/// function的沒有參數版本
template<typename R>
struct function<R()> : function_base<R, storage0>
{
typedef R (*Fn)();
typedef storage0 St;
using function_base<R,St>::pCore; // 想令"pCore"屬性非public就不能用這招了
function(){} // function在宣告時可以不用賦予內容沒關係
//---------------------支援一般函式---------------------start
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
//---------------------支援一般函式---------------------end
//---------------------支援成員函式---------------------start
template<typename C>
function(R(C::*f)())
{
typedef _functional::member_function<R,R (C::*)(),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(),C* c)
{
typedef _functional::member_function<R,R (C::*)(),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)())
{
typedef _functional::member_function<R,R (C::*)(),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
//---------------------支援成員函式---------------------end
//---------------------支援bind()---------------------start
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
//---------------------支援bind()---------------------end
// 執行core_base裡暗藏的function,
R operator()() const
{
return pCore->CallFunction(St());
}
};
/// function的一個參數版本
template<typename R, typename P1>
struct function<R(P1)> : function_base<R, storage1<P1> >
{
typedef R (*Fn)(P1);
typedef storage1<P1> St;
using function_base<R,St>::pCore;
function(){}
//---------------------支援一般函式---------------------start
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
//---------------------支援一般函式---------------------end
//---------------------支援成員函式---------------------start
template<typename C>
function(R(C::*f)(P1))
{
typedef _functional::member_function<R,R (C::*)(P1),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1))
{
typedef _functional::member_function<R,R (C::*)(P1),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
//---------------------支援成員函式---------------------end
//---------------------支援bind()---------------------start
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
//---------------------支援bind()---------------------end
R operator()(P1 p1) const
{
return pCore->CallFunction(St(p1));
}
};
/// function的兩個參數版本
template<typename R, typename P1, typename P2>
struct function<R(P1, P2)> : function_base<R, storage2<P1, P2> >
{
typedef R (*Fn)(P1,P2);
typedef storage2<P1,P2> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2))
{
typedef _functional::member_function<R,R (C::*)(P1,P2),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2))
{
typedef _functional::member_function<R,R (C::*)(P1,P2),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2) const
{
return pCore->CallFunction(St(p1, p2));
}
};
/// function的三個參數版本
template<typename R, typename P1, typename P2, typename P3>
struct function<R(P1, P2, P3)> : function_base<R, storage3<P1, P2, P3> >
{
typedef R (*Fn)(P1,P2,P3);
typedef storage3<P1,P2,P3> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2,P3))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2,P3),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2,P3))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2, P3 p3) const
{
return pCore->CallFunction(St(p1, p2, p3));
}
};
/// function的四個參數版本
template<typename R, typename P1, typename P2, typename P3, typename P4>
struct function<R(P1, P2, P3, P4)> : function_base<R, storage4<P1, P2, P3, P4> >
{
typedef R (*Fn)(P1,P2,P3,P4);
typedef storage4<P1,P2,P3,P4> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2,P3,P4))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2, P3 p3, P4 p4) const
{
return pCore->CallFunction(St(p1, p2, p3, p4));
}
};
/// function的五個參數版本
template<typename R, typename P1, typename P2, typename P3, typename P4, typename P5>
struct function<R(P1, P2, P3, P4, P5)> : function_base<R, storage5<P1, P2, P3, P4, P5> >
{
typedef R (*Fn)(P1,P2,P3,P4,P5);
typedef storage5<P1,P2,P3,P4,P5> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2,P3,P4,P5))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) const
{
return pCore->CallFunction(St(p1, p2, p3, p4, p5));
}
};
/// function的六個參數版本
template<typename R, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6>
struct function<R(P1, P2, P3, P4, P5, P6)> : function_base<R, storage6<P1, P2, P3, P4, P5, P6> >
{
typedef R (*Fn)(P1,P2,P3,P4,P5,P6);
typedef storage6<P1,P2,P3,P4,P5,P6> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2,P3,P4,P5,P6))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) const
{
return pCore->CallFunction(St(p1, p2, p3, p4, p5, p6));
}
};
/// function的七個參數版本
template<typename R, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6, typename P7>
struct function<R(P1, P2, P3, P4, P5, P6, P7)> : function_base<R, storage7<P1, P2, P3, P4, P5, P6, P7> >
{
typedef R (*Fn)(P1,P2,P3,P4,P5,P6,P7);
typedef storage7<P1,P2,P3,P4,P5,P6,P7> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6,P7))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6,P7),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2,P3,P4,P5,P6,P7))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7) const
{
return pCore->CallFunction(St(p1, p2, p3, p4, p5, p6, p7));
}
};
/// function的八個參數版本
template<typename R, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6, typename P7, typename P8>
struct function<R(P1, P2, P3, P4, P5, P6, P7, P8)> : function_base<R, storage8<P1, P2, P3, P4, P5, P6, P7, P8> >
{
typedef R (*Fn)(P1,P2,P3,P4,P5,P6,P7,P8);
typedef storage8<P1,P2,P3,P4,P5,P6,P7,P8> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6,P7,P8))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7,P8),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6,P7,P8),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7,P8),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2,P3,P4,P5,P6,P7,P8))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7,P8),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8) const
{
return pCore->CallFunction(St(p1, p2, p3, p4, p5, p6, p7, p8));
}
};
/// function的九個參數版本
template<typename R, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6, typename P7, typename P8, typename P9>
struct function<R(P1, P2, P3, P4, P5, P6, P7, P8, P9)> : function_base<R, storage9<P1, P2, P3, P4, P5, P6, P7, P8, P9> >
{
typedef R (*Fn)(P1,P2,P3,P4,P5,P6,P7,P8,P9);
typedef storage9<P1,P2,P3,P4,P5,P6,P7,P8,P9> St;
using function_base<R,St>::pCore;
function(){}
function(Fn f)
{
pCore = new _functional::core_function<R, St, Fn>(f);
}
function operator=(Fn f)
{
delete pCore;
pCore = new _functional::core_function<R, St, Fn>(f);
return *this;
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6,P7,P8,P9))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7,P8,P9),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
}
template<typename C>
function(R(C::*f)(P1,P2,P3,P4,P5,P6,P7,P8,P9),C* c)
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7,P8,P9),C> F;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
pCore->SetObject((void*)(c));
}
template<typename C>
function operator=(R(C::*f)(P1,P2,P3,P4,P5,P6,P7,P8,P9))
{
typedef _functional::member_function<R,R (C::*)(P1,P2,P3,P4,P5,P6,P7,P8,P9),C> F;
delete pCore;
pCore = new _functional::core_member_function<R, St, F, C>(F(f));
return *this;
}
template<typename A,typename B,typename C>
function(const bind_t<A,B,C> &b)
{
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
}
template<typename A,typename B,typename C>
function operator=(const bind_t<A,B,C> &b)
{
delete pCore;
pCore = new _functional::core_bind<bind_t<A,B,C>, St >(b);
return *this;
}
R operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9) const
{
return pCore->CallFunction(St(p1, p2, p3, p4, p5, p6, p7, p8, p9));
}
};
//---------------------------function類別們---------------------------end
}//namespace std
#endif//__cplusplus > 201100L
#endif//_STD_FUNCTIONAL_HPP_