Dmitry Atamanov

Results 83 issues of Dmitry Atamanov

LLVM 10 introduced nice [Matrix intrinsics](https://releases.llvm.org/10.0.0/docs/LangRef.html#matrix-intrinsics). Possible syntax: ```zig @Matrix(rows, cols, type) ``` Related issue: #903

proposal
accepted

https://github.com/ziglibs/ansi-term - easy dealing with ANSI terminals. https://github.com/joachimschmidt557/zig-linenoise - line editing with hints, history, completions... Thoughts?

enhancement

https://en.wikipedia.org/wiki/Control_flow#Loops I propose repeat/until as in Pacal & Lua. The great project, thank you!

proposal

E.g.: ```zig pub fn Vm(comptime intType: type, comptime floatType: type) { ... } var vm = bog.Vm(u128, f128).init(allocator, .{ .import_files = true }); ``` or ```zig pub fn Vm(comptime intBits:...

enhancement

Built-in `zstd` and `lz4` filters are very very old :( Proposals: - share your script for combining compression libs - add support system libs

It would be great to update lz4 and zstd to the current version. And, if it's possible, to add support for Lizard and Brotli.

Ideally, 64-bit. Then the user can use xxHash, MUM Hash, MetroHash, etc.

feature request

[Luau](https://luau-lang.org/) ([sources](https://github.com/Roblox/luau)) is the fast Lua alternative, written on C++17 with many useful additions. [LuaBridge3](https://github.com/kunitoki/LuaBridge3) supports Lua out-of-the-box.

scripting
wishlist