| 107 | } |
| 108 | |
| 109 | OneOperator::pair_find OneOperator::FindWithOutCast(const ArrayOfaType & at)const |
| 110 | { |
| 111 | const OneOperator *w=0,*oo; |
| 112 | int n=0; |
| 113 | for (oo=this;oo;oo=oo->next) |
| 114 | if (oo->WithOutCast(at)) |
| 115 | {n++; |
| 116 | w=oo;} |
| 117 | return make_pair(w,n); |
| 118 | } |
| 119 | |
| 120 | // <<FindSameR>> |
| 121 | OneOperator* OneOperator::FindSameR(const ArrayOfaType & at) |
nothing calls this directly
no test coverage detected