An open API service indexing awesome lists of open source software.

https://github.com/ziglibs/computils

Zig utilities for all your comptime needs.
https://github.com/ziglibs/computils

Last synced: 8 days ago
JSON representation

Zig utilities for all your comptime needs.

Awesome Lists containing this project

README

        

# computils

Zig utilities for all your comptime needs.

## Utilities

### `ComptimeArrayList`

**Example:**
```zig
// 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