(ty: &str)
| 849 | } |
| 850 | |
| 851 | pub fn is_integeral_pointer(ty: &str) -> bool { |
| 852 | if let Some(inner) = get_pointer_inner(ty) { |
| 853 | if is_integer_ty(inner) { |
| 854 | return true; |
| 855 | } |
| 856 | } |
| 857 | false |
| 858 | } |
| 859 | |
| 860 | /// Whether this ty is array and is able to receive fuzzer's mutable bytes (considered as fuzzable). |
| 861 | /// 1. must be const qualified array. |
no test coverage detected