├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── src ├── concepts.zig ├── counter_complex.zig ├── counter_increment_only.zig ├── deduplicate.zig ├── mapper.zig ├── new_last_error.zig └── type_id.zig /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/README.md -------------------------------------------------------------------------------- /src/concepts.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/src/concepts.zig -------------------------------------------------------------------------------- /src/counter_complex.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/src/counter_complex.zig -------------------------------------------------------------------------------- /src/counter_increment_only.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/src/counter_increment_only.zig -------------------------------------------------------------------------------- /src/deduplicate.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/src/deduplicate.zig -------------------------------------------------------------------------------- /src/mapper.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/src/mapper.zig -------------------------------------------------------------------------------- /src/new_last_error.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/src/new_last_error.zig -------------------------------------------------------------------------------- /src/type_id.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperAuguste/cursed-zig-errors/HEAD/src/type_id.zig --------------------------------------------------------------------------------