All Questions
Tagged with hashcode reflection
2 questions
5
votes
1
answer
525
views
Python function to hash a python function
I'm working on a sort of distributed build system. The system allows execution of snippets of scripts as build steps. I need to be able to hash these snippets of code in a way that comments and doc ...
10
votes
2
answers
5k
views
Override equals() and hashCode() using reflection
I wrote a utility method to override equals() using reflection. This works fine, but I wonder if this code will pass all the tests.
...