From 4a3e4474b7790fb721695f04fa6d8e10c3b20b73 Mon Sep 17 00:00:00 2001 From: rond Date: Wed, 4 Oct 2023 04:53:34 +0200 Subject: [PATCH 1/2] fix(103_tokenization): :pencil2: Migrated to tokenizeAny The tokenize functions seems to be deprecated as per the docs: https://ziglang.org/documentation/master/std/#A;std:mem.tokenize tokenizeAny is aliased to tokenizeAny as per: https://github.com/ziglang/zig/blob/master/lib/std/mem.zig#L2130C32-L2130C32 --- exercises/103_tokenization.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/103_tokenization.zig b/exercises/103_tokenization.zig index dba8607..7f59766 100644 --- a/exercises/103_tokenization.zig +++ b/exercises/103_tokenization.zig @@ -62,7 +62,7 @@ // // A standard tokenizer is called (Zig has several) and // // used to locate the positions of the respective separators // // (we remember, space and comma) and pass them to an iterator. -// var it = std.mem.tokenize(u8, input, " ,"); +// var it = std.mem.tokenizeAny(u8, input, " ,"); // // // The iterator can now be processed in a loop and the // // individual numbers can be transferred. @@ -136,7 +136,7 @@ pub fn main() !void { ; // now the tokenizer, but what do we need here? - var it = std.mem.tokenize(u8, poem, ???); + var it = std.mem.tokenizeAny(u8, poem, ???); // print all words and count them var cnt: usize = 0; From 3abefbd402e0b0e6556231d3ef5e1b0708154760 Mon Sep 17 00:00:00 2001 From: rond Date: Wed, 4 Oct 2023 09:12:48 +0200 Subject: [PATCH 2/2] fix(103 patch): :pencil2: Update patch to reflect changes Accidentally forgot to add an update in the patch file. --- patches/patches/103_tokenization.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/patches/103_tokenization.patch b/patches/patches/103_tokenization.patch index 973ffe6..8ed8a5e 100644 --- a/patches/patches/103_tokenization.patch +++ b/patches/patches/103_tokenization.patch @@ -1,4 +1,4 @@ 139c139 -< var it = std.mem.tokenize(u8, poem, ???); +< var it = std.mem.tokenizeAny(u8, poem, ???); --- -> var it = std.mem.tokenize(u8, poem, " ,;!\n"); +> var it = std.mem.tokenizeAny(u8, poem, " ,;!\n");