Il2CppGenericInstCompare.h 655 B

1234567891011121314151617181920
  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 Compare(const Il2CppGenericInst* left, const Il2CppGenericInst* right);
  14. static bool AreEqual(const Il2CppGenericInst* left, const Il2CppGenericInst* right);
  15. };
  16. } /* namespace vm */
  17. } /* namespace il2cpp */