Unordered map for student custom class

in hashfunction
i am not understand
what is meaning of t_size and operator()()
and const function ?

@khemchandrs
a) size_t is alias for unsigned long long - > https://www.geeksforgeeks.org/size_t-data-type-c-language/

b) const is keyword in c++ that we use with variable if we want to fix its value (i.e we dont want anyone ,any function to chanage its value)
c) operator () (){ SOMETHING} is operator overloading here we are overloading () operator . -> https://www.geeksforgeeks.org/operator-overloading-c/

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.