Not Available
- No LINQ (not planned for 1.0, maybe later) there are some [https://gitlab.com/kosmospredanie/gpseq]
- No operator overloading (vala-list)
- No method or constructor overloading (use different method names / named constructors instead, as described above)
- No extension methods
- No constraints on generic type parameters (i.e. no
where) - No generic delegates
- No conversion operators (i.e. no
explicitandimplicit) - No
partialclasses and methods - No
sealedclasses (planned) - No static classes (use nested namespaces instead. Vala supports namespace methods, they are implicitly static)
- No
goto, no labeled statements - No constructor initializers
- No bounds checking for arrays (optional support planned)
- No
checked,unchecked,fixed,stackalloc,readonly
