@DvKirn I've added your project to the list. Sorry for the small delay.
Yo. I cannot be more appreciative of you guys for handling this so smoothly. @Miblo, I'd like to e…
Stepanov and Rose's book has this to say about concepts:A concept can be viewed as a set of requir…
Mattie —
If MergeIfPossible() returns the pointer to the merged block when the merge succeeds, what should …
Your generalization is just over kill and you ain't gonna need it. Templates can be very useful b…
I cannot believe I am saying this but one good thing about MatLab is its builtin math. It does hav…
Could anyone point me to a write up about why Casey thinks C++ is so bad, I mean really specifical…
Concepts are like interfaces for templates. When you say: Then vector expects certain things to …
Part of HMH's fun is trying to anticipate how Casey is going to write something before he writes i…
That is not generally how one templatizes a linear algebra vector. Typically you parameterize no…
Yes, as Martins says, there are a lot of benefits to a metaprogrammed vector type. The problem wi…
His implementation avoids reimplementing for each Vector type functions like dot, length, lerp and…
For those interested in details, I've added one such implementation to the above repo. (lml.h and…
Ok, here is the solution (thank you Dot): In the System environment there was a Variable with the …
No problem at all - it is always better to be safe than sorry!Casey
I use Go(lang) a lot at work and Go interfaces can be useful. In the package, there are a few ver…
Here is a very good example of Immediate Mode GUI in C++:
Yep, right you are. Sorry for the noise.
Well, yes, it is a vtable, but I like it better this way. I can control it and who knows what will…
Mox —
Yeah, I guess that will work. But isn't that just implementing your own vtable? I was hoping for a…
I'm not sure what you want to achieve. If you really need to inline these functions then I have no…
Please look at the call site for MergeIfPossible and note that it is called twice, once for B-C (i…
Cheers, debiatan! It's good to be back. Ha, okay. Well your script eases the process a lot. Maybe …
Hey, i think in your implementation of MergeIfPossible you're missing to merge with all free chunk…
Hi Miblo. Glad you're back! I agree with the scheme you propose and I'm also too lazy to pass up o…
One more thing: I've tried to setup earlier a Handmade project in VS2013 Community edition, to use…
Aye, agreed. So I think it'd be worthwhile recognising one person as the habitual issue creator, b…
C standard comes with set of functions any C standard compliant compiler should provide. For examp…
To clarify; I was trying to understand what I could do to move away from using STL containers pur…