Frida Docs Unified
    Preparing search index...
    • Creates a filter to include elements whose type can be corresponds to the given class.
      It compares the native handle of the element classes.

      const String = Il2Cpp.corlib.class("System.String");

      const objects = [
      Il2Cpp.corlib.class("System.Object").new(),
      Il2Cpp.corlib.class("System.String").new()
      ];

      const strings = objects.filter(Il2Cpp.isExactly(String));

      Type Parameters

      Parameters

      Returns (element: T) => boolean