about summary refs log tree commit diff stats
path: root/077hash.cc
Commit message (Collapse)AuthorAgeFilesLines
* 2680Kartik K. Agaram2016-02-191-1/+1
| | | | Memory leaks fixed.
* 2668 - add an escape hatch for 'hash'Kartik K. Agaram2016-02-171-0/+21
| | | | | | | | If you don't want a field of a container to be included in its hash, use the /ignore-for-hash property. This property only works for containers, not exclusive-containers or arrays. Mu will warn if you misuse it.
* 2667 - redo container data structureKartik K. Agaram2016-02-171-1/+1
| | | | I've been gradually Greenspunning reagents. Just go all the way.
* 2664 - 'hash' any typeKartik K. Agaram2016-02-161-3/+339
| | | | | | This is smart enough to only look at data and ignores internal book-keeping like addresses, refcounts and floating-point details. Though the last is not ideal yet.
* 2662 - rewrite 'hash' in C++Kartik K. Agaram2016-02-151-0/+36
Since it needs specialized non-overflowing types like unsigned long long, my plan is to eventually write it in straight machine code using Mu primitives to make that a slightly nicer process. Hopefully we'll need to deal with machine types only for a tiny set of crucial primitives and it won't be too painful to drop down to machine code for them.