Anhad Singh
Anhad Singh
This RFC adds support for bit-fields in `repr(C)` structs by - Introducing a new attribute `bits(N)` that can be applied to integer fields. - Allowing such annotated fields to be...
mlibc panicked at `Assertion '!"slab_pool corruption. Possible write to unallocated object"' failed!`. If a rear guard is placed (i.e all `malloc` calls allocate `size` + `16`) it works. So its...
This is a very important thing that a language should have. Even though if its inbuilt std lib is not good then its P easy to use ffi and make...
Add use: Syntax ```rust use library.someClass.someFunction; use library.someFunction; use library.someVariable; // Multiple use’s use library.{someClass, someVar, someFunc}; ``` Update grab to not pollute: ```dart grab("somelib"); // To access the function...
Add enums with super powers! 1. Enums with string values. ```dart enum { a = "Hello", b = "Allo", c = "Bonjour", } example; ``` 2. Enums with int values....
## Generic type parameters: ### Syntax ```dart List = ["a", "b", "c"]; ``` ## Add typedefs: ### Syntax ```rust type example = List; ```
**Describe the solution you'd like** Add methods and parameters for maps
**Describe the solution you'd like** Add constructor() methods in classes. Mainly add arguments support in classes. **Additional context** N/A