thefuga/go-collections

optimize kv.Collection.Every functions to return early

Ouverte

#40 ouverte le 2 août 2022

 (0 commentaire) (0 réaction) (0 personne assignée)Go (3 forks)auto 404
good first issuerefactor

Métriques du dépôt

Stars
 (26 étoiles)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

Currently, kv.Collection.Every uses kv.Collection.Each to iterate over the collection, which doesn't return early when a non-matching value is encountered, forcing more iterations than necessary.

Guide contributeur