-
When doing pattern matching, we can match against the type of the object. This works fine for normal types, but not for generics.
Small example:
```
Main() : void {
def s = "Test";
def lst =…
-
```
When you serialize a Dictionary, you get an XML name that
does not register as valid XML. (At least when displayed in IE, it says that
an element contains an invalid name.) I assume this is due …
-
It is currently possible to use std::vector (in a little bit complicated way), but no ways to use std::array (or I just don't know how).
So would be nice to have something like:
```
@:native('st…
-
**Application made attempt to call method of already deleted object: $000001F8F7C37E60 OBJECT [?] 2240 bytes.**
```
[000000005F5503DE] Vcl.Forms.TCustomForm.Close
[00000000600A80A5] GLSModelUnit.TGLS…
-
Polotno SDK seems to have subpar TypeScript support. The type system seems to be added on as an afterthought and isn't robust or always helpful. Often it hinders development because I have to fight wi…
ADTC updated
2 months ago
-
[Link to slang](https://github.com/shader-slang/slang)
Putting an issue just in case.
Slang is a shader language developed by nvidia which is backwards compatible with hlsl--it can generate hlsl…
-
Currently, it only works if I specify return type without generics like `Map`. If I set it like `Map` there will be no query handler recognized (considering I specify `ResponseTypes.instanceOf(Map.cla…
-
```pony
trait X[A: X[A] box]
fun apply[B: X[B] box](a: B) =>
None
fun f() =>
apply[X[A]](this)
class C is X[C box]
```
I was looking at @Praetonus's [F-Bounded Polymorphi…
-
```
When you serialize a Dictionary, you get an XML name that
does not register as valid XML. (At least when displayed in IE, it says that
an element contains an invalid name.) I assume this is due …
-
I think that we could change NSManagedObject extension using generics.
For example:
Now
``` swift
func createNewEntity(context:) -> NSManagedObject {}
...
let pokemon = Pokemon.createNewEntity() …