Categories
Applications
  • Github CLI
  • SSH
  • HTTPS
Clone Repo

computils

Zig utilities for all your comptime needs.

Utilities

ComptimeArrayList

Example:

// Simply replace your ArrayList(T).init(allocator) with ComptimeArrayList(T).init()
// and use `comptime` on all operations

comptime {
    var list = ComptimeArrayList(u8).init();
    list.append('a');
}

License

MIT

About
Zig utilities for all your comptime needs.
Owner
ziglibs (Organization)
Last Commit
2020-08-03
Latest Release
Latest Release Date
Created
2020-08-02