1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 01:57:02 +09:00

Fixes several changes in std.builtin.zig

This commit is contained in:
Chris Boesch 2024-09-02 19:33:59 +02:00
parent 296a2b5c6a
commit b2f56c7cea
No known key found for this signature in database
GPG key ID: 8712DF4D3E364668
9 changed files with 22 additions and 21 deletions

View file

@ -1,5 +1,5 @@
--- exercises/065_builtins2.zig 2023-10-03 22:15:22.125574535 +0200
+++ answers/065_builtins2.zig 2023-10-05 20:04:07.136101712 +0200
--- exercises/065_builtins2.zig 2024-09-02 19:15:56.569952315 +0200
+++ answers/065_builtins2.zig 2024-09-02 19:13:44.280600350 +0200
@@ -58,7 +58,7 @@
// Oops! We cannot leave the 'me' and 'myself' fields
// undefined. Please set them here:
@ -24,16 +24,16 @@
// (which is a zero-bit type that takes up no space at all!):
- if (fields[0].??? != void) {
+ if (fields[0].type != void) {
print(" {s}", .{@typeInfo(Narcissus).Struct.fields[0].name});
print(" {s}", .{@typeInfo(Narcissus).@"struct".fields[0].name});
}
- if (fields[1].??? != void) {
+ if (fields[1].type != void) {
print(" {s}", .{@typeInfo(Narcissus).Struct.fields[1].name});
print(" {s}", .{@typeInfo(Narcissus).@"struct".fields[1].name});
}
- if (fields[2].??? != void) {
+ if (fields[2].type != void) {
print(" {s}", .{@typeInfo(Narcissus).Struct.fields[2].name});
print(" {s}", .{@typeInfo(Narcissus).@"struct".fields[2].name});
}

View file

@ -1,8 +1,8 @@
--- exercises/071_comptime6.zig 2023-10-03 22:15:22.125574535 +0200
+++ answers/071_comptime6.zig 2023-10-05 20:04:07.162768879 +0200
--- exercises/071_comptime6.zig 2024-09-02 19:21:50.250454978 +0200
+++ answers/071_comptime6.zig 2024-09-02 19:21:23.553250563 +0200
@@ -40,7 +40,7 @@
const fields = @typeInfo(Narcissus).Struct.fields;
const fields = @typeInfo(Narcissus).@"struct".fields;
- ??? {
+ inline for (fields) |field| {

View file

@ -1,5 +1,5 @@
--- exercises/076_sentinels.zig 2023-10-03 22:15:22.125574535 +0200
+++ answers/076_sentinels.zig 2023-10-05 20:04:07.186102649 +0200
--- exercises/076_sentinels.zig 2024-09-02 19:27:04.336781039 +0200
+++ answers/076_sentinels.zig 2024-09-02 19:26:15.709134934 +0200
@@ -82,7 +82,7 @@
print("Array:", .{});

View file

@ -1,11 +1,11 @@
--- exercises/082_anonymous_structs3.zig 2023-10-03 22:15:22.125574535 +0200
+++ answers/082_anonymous_structs3.zig 2023-10-05 20:04:07.212769813 +0200
--- exercises/082_anonymous_structs3.zig 2024-08-04 15:57:16.753494020 +0200
+++ answers/082_anonymous_structs3.zig 2024-09-02 19:30:00.967005314 +0200
@@ -82,14 +82,14 @@
// @typeInfo(Circle).Struct.fields
//
// This will be an array of StructFields.
- const fields = ???;
+ const fields = @typeInfo(@TypeOf(tuple)).Struct.fields;
+ const fields = @typeInfo(@TypeOf(tuple)).@"struct".fields;
// 2. Loop through each field. This must be done at compile
// time.