From bfe23f53e27f0c1b46066a1aa65d84eb175f84ea Mon Sep 17 00:00:00 2001 From: Tordarus Date: Mon, 24 Mar 2025 17:20:30 +0100 Subject: [PATCH] updated Go version and edited Iter() function to use the newly added iterator syntax --- go.mod | 2 +- map.go | 24 +++++++++++++++--------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/go.mod b/go.mod index c938cac..3ccf21d 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module git.tordarus.net/tordarus/cmap -go 1.22.0 +go 1.24.1 diff --git a/map.go b/map.go index 9f96343..e32729c 100644 --- a/map.go +++ b/map.go @@ -1,6 +1,9 @@ package cmap -import "sync" +import ( + "iter" + "sync" +) // Map represents a map safe for concurrent use type Map[K comparable, V any] struct { @@ -55,15 +58,18 @@ func (m *Map[K, V]) Count() int { return len(m.data) } -// Iter calls f for every key-value pair stored in m. -// Be aware that this locks m for write access -// as pointer types could be modified in f -func (m *Map[K, V]) Iter(f func(key K, value V)) { - m.mutex.Lock() - defer m.mutex.Unlock() +// Iterate returns a Go iterator to make for-range loops possible. +// Be aware that the whole map is locked during iteration. +func (m *Map[K, V]) Iterate() iter.Seq2[K, V] { + return func(yield func(K, V) bool) { + m.mutex.Lock() + defer m.mutex.Unlock() - for key, value := range m.data { - f(key, value) + for key, value := range m.data { + if !yield(key, value) { + return + } + } } }