From 959a1121ef2988dc34a1fff5fbb1b27a06eaafc0 Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Sun, 24 Aug 2025 12:42:04 +0200 Subject: [PATCH] oops --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 9b4bdc3..f5047cb 100644 --- a/README.md +++ b/README.md @@ -1518,6 +1518,8 @@ result := FilterKeys(kv, func(k int, v string) bool { // [1] ``` +[[play](https://go.dev/play/p/OFlKXlPrBAe)] + ### FilterValues Transforms a map into a slice based on predicate returns truthy for specific elements. It is a mix of `lo.Filter()` and `lo.Values()`. @@ -1531,6 +1533,8 @@ result := FilterValues(kv, func(k int, v string) bool { // ["foo"] ``` +[[play](https://go.dev/play/p/YVD5r_h-LX-)] + ### Range / RangeFrom / RangeWithSteps Creates an array of numbers (positive and/or negative) progressing from start up to, but not including end.