-
### Microsoft PowerToys version
0.85.1
### Installation method
Microsoft Store
### Running as admin
Yes
### Area(s) with issue?
Peek
### Steps to reproduce
See the end of this message for det…
-
# Summary
While trying to build a simple "event sourcing" style application I ran into problems with tuple matching.
Essentially if I build a tuple as a literal:
```pony
let cc: Change = ((0,…
-
I was trying to sort a 10 million element IntArrayList with a custom IntComparator - can it be that the sort method sortThis may be recursively implemented or something as I get a stack overflow?!
…
-
JVM arrays are not really generic, the type of the item they store have to be known at compile time, there is no type erasure.
This means that the current decoder fails during runtime:
```
Caus…
-
# Description
I'm trying to describe a top level union that allows arbitrary shapes of `list`, `set` or `dict` containing either primitives `{bool, int , float, bytes, str}` or collections when perm…
-
*For streaming support, we added the ability to write individual properties of a resource, as well as individual primitive values within a collection, by calling WritePrimitive. Similarly, we adde…
-
````pony
use "collections"
primitive Seqx[A: Seq[B] ref = Array[I32], B: Comparable[B] #read = I32]
fun each(a: A, f: ({(B)} val | {(B): B} val) ): A^ => a
fun map(a: A, f: ({(B): B} val | {…
-
I keep seeing this sometimes. I think it happens if the security key dialog opens when the Alt+Tab switcher is open.
```
See the end of this message for details on invoking
just-in-time (JIT) de…
-
Use http://java-performance.info/, for instance:
http://java-performance.info/large-hashmap-overview-jdk-fastutil-goldman-sachs-hppc-koloboke-trove/
http://java-performance.info/primitive-types-collec…
-
### Description
In the Entities we use Enum types a lot and we make sure to store them as strings instead of numbers
For this we use `.HasConversion();` and it works great.
Now we would like to…