l0rinc
l0rinc
I guess the problem is with https://github.com/msteindorfer/jmh/blob/master/jmh-core/src/main/java/org/openjdk/jmh/generators/core/BenchmarkGeneratorUtils.java#L85
https://docs.oracle.com/javase/specs/jvms/se11/html/jvms-4.html#jvms-4.2.1 also suggests it should accept spaces.
> Ideally, our API should be composable Indeed, in the above example the `newCaseConverter` needed 2 parameters, which can be composed either as written above (showcasing the one-liner or the...
@TimvdLippe, it seems that https://stackoverflow.com/a/26319364 breaks this pattern in some cases anyway - so while the following works: ```java return mockWith(Connection.class, _mockConnection -> { var mockPreparedStatement = mockWith(PreparedStatement.class, _mockPreparedStatement ->...
`head`↔`last` (first↔last) `init`↔`tail` (all - last)↔(all - first) I agree that the naming is quote unfortunate, but functional programming is filled with these (e.g. `List.map` will return a `List` (not...
If I understood it correctly, the only difference is that you did a manual tail call optimization in the first example, right? Since it's logarithmic, you probably won't get a...
> used a java.util.Deque instead of a javaslang Stack inside of the RedBlackTree If you can guarantee that the mutability won't leak out and you don't need to synchronize the...
https://github.com/javaslang/javaslang/pull/1317 addresses this issue, but it's in review for almost a year. @eduardmanas, @danieldietrich, what's the reason for that?
Hey there, since JDK 14 was released 2 months ago and 15 will be released in 4 months, could we please prioritize this ticket, it's blocking us from upgrading.
I think we can close this now, but JDK 15 is still unsupported - see https://github.com/Guardsquare/proguard/issues/64#issuecomment-755295941