MoGu

Results 12 comments of MoGu

First, we use ktor as our network basis, and it also cannot configure dispatcher name or thread name. On the other hand, Dispatchers.Default is exactly what we want except the...

For consistency. In our case, we use some standalone threads to process particular light tasks, like commands. It's convenient to filter logs for other purposes if normalized thread names are...

Use case: Protobuf schema generator cannot generate message schema correctly with fields that have non-type-specific default values in kotlin codes. But protobuf itself has had support default value for fields....

```zig // I prefer this const a: [_]u8 = .{1, 2, 3}; ```

I suggest to reconsider about this proposal. As @andrewrk noticed in [0.6.0 release note](https://ziglang.org/download/0.6.0/release-notes.html#Roadmap), 0.7.x maybe the last chance to make a bigger change in zig to polish this language...

@iology sorry for those type mistakes, I've edited the post. ```zig const x: [_]u8 = if a => value { // disallow multiple statements? // -> no, this is and...

That's ok, zig itself is more important for me. :)

@meatatt Yes, TWO GOD.

As #685 landed, so anonymous function literals(function or closure) should introduced? Like: ```zig v.map(.(i) { return i+1; }); // or v.map(.(i) -> i+1); ```