get the positiions of integer parameters of this API call.
(&self)
| 614 | |
| 615 | /// get the positiions of integer parameters of this API call. |
| 616 | pub fn get_integer_params_pos(&self) -> Vec<usize> { |
| 617 | let mut pos = Vec::new(); |
| 618 | for (i, param) in self.arg_types.iter().enumerate() { |
| 619 | if is_integer_ty(param) { |
| 620 | pos.push(i); |
| 621 | } |
| 622 | } |
| 623 | pos |
| 624 | } |
| 625 | |
| 626 | pub fn get_integeral_pointer_pos(&self) -> Vec<usize> { |
| 627 | let mut pos = Vec::new(); |
no test coverage detected