Komari Spaghetti

Results 30 issues of Komari Spaghetti

All the code for this function already exists, but only ChildProcess.exec was allowed to use the code.

Explained [here](https://github.com/ziglang/zig/issues/2043#issuecomment-472900431) > Actually, this broke with the grammar changes in #1685. Basically, we have this rule at stmt level: > > ``` > Statement > / LabeledStatement > ......

Would be super nice to have a function that parses delimiter separated values (dsv) into a type. Api would be something like this: ``` pub fn dsv(comptime T: type, comptime...

Implements [this](https://github.com/vurtun/nuklear/issues/905) issue. This pull request doesn't actually implement this. It only contains changes to the header files. This is my proposed new API for strings in the Nuklear library....

I discussed this issue in #906 Before: ![image](https://user-images.githubusercontent.com/3759175/65353515-a4324200-dbed-11e9-89d3-a0604c9b4ba0.png) After: ![image](https://user-images.githubusercontent.com/3759175/68528685-5802a480-02f6-11ea-8491-683a9d269a4f.png)

As discussed in #890 > To make this change happen, it would be wise to change (not add new API calls) the whole library to not use any null-terminated strings....

So, I want to layout my widgets like this: ``` +------++------+ | || | | |+------+ | |+------+ | || | +------++------+ ``` I see in `overview.c` that there is...

Currently, the width is just counted as bytes, but it should at least count unicode characters (mostly, so it can be correctly rendered to a tty)

One thing I end of doing sometimes is constructing a table that maps all `u4` values to something else. I tend to do this with arrays: ```rust const channel_message_table =...

proposal

### Zig Version 0.10.0-dev.3885+a7661f115d ### Steps to Reproduce `test.zig` ```zig const std = @import("std"); const testing = std.testing; test { const S = struct { key: u32, value: void };...

bug
frontend
backend-llvm