| 719 | |
| 720 | |
| 721 | int Find(ELEM_ inValue) |
| 722 | { |
| 723 | ELEM_ *e = (ELEM_ *)mBase; |
| 724 | for(int i=0;i<length;i++) |
| 725 | if (hx::arrayElemEq(e[i],inValue)) |
| 726 | return i; |
| 727 | return -1; |
| 728 | } |
| 729 | |
| 730 | bool contains(ELEM_ inValue) |
| 731 | { |
nothing calls this directly
no test coverage detected