Remix.run Logo
ginko 3 hours ago

Is it? I'm mostly used to (pre-)C++11 and the only unusual operators I see are ^^T (which I presume accesses the metadata info of T) and [:e:] (which I assume somehow casts the enumerator metadata 'e' to a constant value of T).

And template for but I assume that's like inline for like in zig.

CamouflagedKiwi 3 hours ago | parent [-]

requires is also new (not sure exactly when that appeared, it's after the last time I wrote C++ in anger) although I think it's fairly clear what it means. I can only guess at the other two.

Not familiar with Zig but AFAICT `inline for` is about instructing the compiler to unroll the loop, whereas `template for` means it can be evaluated at compile time and each loop iteration can have a different type for the iteration variable. It's a bit crazy but necessary for reflection to work usefully in the way the language sets it up.

NooneAtAll3 an hour ago | parent | next [-]

requires is concept, one of big-C-words of ++20

ginko 3 hours ago | parent | prev [-]

Zig's inline for is also evaluated at comptime:

https://ziglang.org/documentation/master/#inline-for