Juho Eerola

Results 12 issues of Juho Eerola

A variadic `zip()` might make implementing other variadic algorithms easy in terms of existing stl algorithms. It might also be useful on its own. The function would take variadic number...

Description ----------- This demonstrates failure mode of some tests, where the temporary directory path generated by pytest is too long to fully fit into the header. (encountered on MacOS) This...

bug

Added nan check for ncr and fac functions. Now both will return nan, when given nan as parameter. This should resolve #62 Also added .gitignore with the artifacts from make

TagSoupPullParser should now be fully removed from c++ side, since HtmlRenderer was the only user. Also ported couple utils functions (and tests for those) that were used in HtmlRenderer: -...

Attempt to fix #2735

Some expressions get parenthesised in the code generation. When such expression is the only one in a block, and also in tail position (e.i. returned), the return statement is parenthesised...

Attempt to fix #2753 I noticed the same happened with trailing space before the empty line. I think this was partially caused by https://github.com/gleam-lang/gleam/blob/2a459ff2c02a59ce32b989a40ce07d88e1d14bcd/compiler-core/src/format.rs#L704, which didn't find the further than...

Everything should already compile just fine with gcc 10+ or clang 11+ (#190), which are mentioned in the readme. So, the CI compiler version should probably be updated, as it...

enhancement
ci / build
c to c++

This continues from #200 This removes the conversions from and to XNUM, and any cases triggering those in the tests #111 XNUM will still be present as building block for...

The main funtion doing the conversion work is `convert()`. The external interface is unchanged (except B -> bool). - Simple cases use just simple copy, with range check when `From`...

c to c++