| 153 | } |
| 154 | |
| 155 | void ordered_insert(T p_val) { |
| 156 | U i; |
| 157 | for (i = 0; i < count; i++) { |
| 158 | if (p_val < data[i]) { |
| 159 | break; |
| 160 | } |
| 161 | } |
| 162 | insert(i, p_val); |
| 163 | } |
| 164 | |
| 165 | _FORCE_INLINE_ StaticVector() {} |
| 166 | _FORCE_INLINE_ StaticVector(const StaticVector &p_from) { |
nothing calls this directly
no outgoing calls
no test coverage detected