MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / is_array_ty

Function is_array_ty

src/program/gadget.rs:837–842  ·  view source on GitHub ↗
(ty: &str)

Source from the content-addressed store, hash-verified

835 }
836
837 pub fn is_array_ty(ty: &str) -> bool {
838 if is_const_pointer_ty(ty) || is_mut_pointer_ty(ty) {
839 return true;
840 }
841 false
842 }
843
844 pub fn is_sized_array_ty(ty: &str) -> bool {
845 if let Some(inner) = get_sized_pointer_inner(ty) {

Callers 1

get_array_params_posMethod · 0.85

Calls 2

is_const_pointer_tyFunction · 0.85
is_mut_pointer_tyFunction · 0.85

Tested by

no test coverage detected