From 46024156d36650306c6945a6016ca2be9c8a8b82 Mon Sep 17 00:00:00 2001 From: Kirk J Krauss <39602258+kirkjkrauss@users.noreply.github.com> Date: Sun, 9 Nov 2025 07:21:08 -0800 Subject: [PATCH] Update 2025-11-12-this-week-in-rust.md Under Rust Walkthroughs, link to article discussing Rust implementations of an algorithm for matching wildcards. Includes code for ASCII and UTF-8 content, thorough testcase code, and a discussion contrasting the algorithmic approach with the approach taken in prior methods of matching wildcards in Rust. --- draft/2025-11-12-this-week-in-rust.md | 1 + 1 file changed, 1 insertion(+) diff --git a/draft/2025-11-12-this-week-in-rust.md b/draft/2025-11-12-this-week-in-rust.md index 86317b91b..8e0f6b5b9 100644 --- a/draft/2025-11-12-this-week-in-rust.md +++ b/draft/2025-11-12-this-week-in-rust.md @@ -48,6 +48,7 @@ and just ask the editors to select the category. ### Observations/Thoughts ### Rust Walkthroughs +[Matching Wildcards in Rust](https://developforperformance.com/MatchingWildcardsInRust.html) ### Research