Jason E. Aten, Ph.D.

Results 67 issues of Jason E. Aten, Ph.D.

Can one type switch within the implementation of a generic function? something like this might be reasonable: ``` func add[T](a, b T) T { switch T { // equivalent to...

enhancement

Fix minor hiccups to get a clean build and green test run.

I love godef, but it doesn't seem to notice when a vendor/ directory is being used.

At the repl ``` > (def b ")") >> ``` will cause glisp to hang because it doesn't actually parse the input, just check that the parenthesis balance. I fixed...

I added true lexical scoping to zygomys; if you'd like to backport to Glisp, most of it is contained in this commit (with a few other features as well). https://github.com/glycerine/zygomys/commit/4c7e668c321a9e1bc6e50c31a4c185b4c300c674

It would great to have a easy way to read and interpret a file full of expressions and declarations. Perhaps there is always a way I'm not finding. The opposite...

enhancement

often times in the run container operations it appeared faster to convert to bitmaps and the do the operations there. Meaure and see if any of the remaining operations could...

performance

currently these functions are just stubbed out. Once implemented, the whole lazy combination system could be groomed and tuned.

performance

Both the C and the java binary search implementations are subject to a classic integer overflow bug in binary search; e.g. at https://github.com/RoaringBitmap/CRoaring/blob/master/include/roaring/containers/run.h#L91 instead of int32_t middleIndex = (low +...

documentation

I ran across a paper about HICAMP Bitmaps from folks at Stanford, and wondered if there were any good ideas to be learned from it. http://web.stanford.edu/~hlitz/papers/a7-wang.pdf

question