Re: Get the default hash function.

2014-07-31 Thread H. S. Teoh via Digitalmars-d-learn
On Thu, Jul 31, 2014 at 12:05:52PM +, francesco cattoglio via Digitalmars-d-learn wrote: > Really simple question: > how do I get the compiler-generated hash function for a given type? > > For example: > Struct S > { > int i; > } > > can be used in an associative array. That means the co

Re: Get the default hash function.

2014-07-31 Thread FreeSlave via Digitalmars-d-learn
On Thursday, 31 July 2014 at 12:05:53 UTC, francesco cattoglio wrote: Really simple question: how do I get the compiler-generated hash function for a given type? For example: Struct S { int i; } can be used in an associative array. That means the compiler generates a "toHash" function. I

Get the default hash function.

2014-07-31 Thread francesco cattoglio via Digitalmars-d-learn
Really simple question: how do I get the compiler-generated hash function for a given type? For example: Struct S { int i; } can be used in an associative array. That means the compiler generates a "toHash" function. Is there any simple way to call it directly?