Il2CppGenericInstCompare.h 563 B

12345678910111213141516171819
  1. #pragma once
  2. #include "utils/KeyWrapper.h"
  3. struct Il2CppGenericInst;
  4. namespace il2cpp
  5. {
  6. namespace metadata
  7. {
  8. class Il2CppGenericInstCompare
  9. {
  10. public:
  11. bool operator()(const KeyWrapper<const Il2CppGenericInst*>& t1, const KeyWrapper<const Il2CppGenericInst*>& t2) const;
  12. static bool Compare(const KeyWrapper<const Il2CppGenericInst*>& t1, const KeyWrapper<const Il2CppGenericInst*>& t2);
  13. static bool AreEqual(const Il2CppGenericInst* left, const Il2CppGenericInst* right);
  14. };
  15. } /* namespace vm */
  16. } /* namespace il2cpp */