Generics with <>. Deprecation of {} generics.

This commit is contained in:
Christoffer Lerno
2026-01-18 00:33:43 +01:00
parent d3ebd4a130
commit c3b2694834
93 changed files with 179 additions and 197 deletions

View File

@@ -1,4 +1,4 @@
module std::thread::channel{Type};
module std::thread::channel <Type>;
typedef BufferedChannel = void*;

View File

@@ -1,4 +1,4 @@
module std::thread::pool{SIZE};
module std::thread::pool <SIZE>;
import std::thread;
struct ThreadPool

View File

@@ -1,4 +1,4 @@
module std::thread::channel {Type};
module std::thread::channel <Type>;
typedef UnbufferedChannel = void*;