John Skaller
John Skaller
> Some problems to consider: > > • Functions with signatures like (x:int)(y:int) can’t check both invariants on the first curried form. For the constructor, of course they can’t, the...
You mean "appears to work" which is a different animal. Many small tests work because the GC is never triggered. You can force it to be triggered in two ways:...
Yes, but the question is: is this a bug in Judy, or is Judy OK and something else is corrupting its indices? In the latter case, the bug may be...
So I have added this now, in particular `/std:c++latest` for C++ and `/std:c17` for C in the compiler command line. I have no idea if it works.
Vim at least. Look in src/misc
What does the log say? `build/release/fbuild.log` Removing the osx directories should have no impact at all. The bootstrap builder builds all the toolchains. The error isn't visible and not enough...
Interestingly the "init before use" checker I'm working on found a bug in the buildtool where the code was copying C++ header files based on a list in a variable...
> On 31 Oct 2015, at 06:08, axeoth [email protected] wrote: > > Would be possible to have .deb packages and, maybe, a repository? It is possible to generate a Debian...
> On 31 Oct 2015, at 08:35, john skaller [email protected] wrote: > > > On 31 Oct 2015, at 06:08, axeoth [email protected] wrote: > > > > Would be possible...
Its worse! Given a string s and slice a..b, then ``` s.[a..b] ``` is not the substring of s between a and b inclusive. Instead, if a or b are...