| 562 | } |
| 563 | |
| 564 | bool ArrayOfaType::WithOutCast( const ArrayOfaType & a) const |
| 565 | { |
| 566 | if ( ( !ellipse && (a.n != n)) || (ellipse && n > a.n) ) return false; |
| 567 | for (int i=0;i<n;i++) |
| 568 | if (! a.t[i]->SametypeRight(t[i])) |
| 569 | return false; |
| 570 | return true; |
| 571 | } |
| 572 | |
| 573 | |
| 574 | bool ArrayOfaType::WithCast( const ArrayOfaType & a,int nbcast) const |
no test coverage detected