]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve the semantic of seq-some
authorNicolas Petton <nicolas@petton.fr>
Sat, 5 Sep 2015 22:26:17 +0000 (00:26 +0200)
committerNicolas Petton <nicolas@petton.fr>
Sat, 5 Sep 2015 22:44:39 +0000 (00:44 +0200)
Update seq-some to return non-nil if the predicate returns non-nil for
any element of the seq, in which case the returned value is the one
returned by the predicate.

* lisp/emacs-lisp/seq.el (seq-some): Update the function and its
  docstring.
* test/automated/seq-tests.el (test-seq-some): Add a regression test.
* doc/lispref/sequences.texi (Sequence Functions): Update the
  documentation for seq-some.

doc/lispref/sequences.texi
lisp/emacs-lisp/seq.el
test/automated/seq-tests.el

index 22ae9959602476a4ea0ecb6da23081f32bef0b4a..f73779bd9ceac8a682540caebb22876e6064e60b 100644 (file)
@@ -558,18 +558,23 @@ calling @var{function}.
 @end defun
 
 @defun seq-some predicate sequence
-  This function returns the first member of sequence for which @var{predicate}
-returns non-@code{nil}.
+  This function returns non-@code{nil} if @var{predicate} returns
+non-@code{nil} for any element of @var{sequence}.  If so, the returned
+value is the value returned by @var{predicate}.
 
 @example
 @group
 (seq-some #'numberp ["abc" 1 nil])
-@result{} 1
+@result{} t
 @end group
 @group
 (seq-some #'numberp ["abc" "def"])
 @result{} nil
 @end group
+@group
+(seq-some #'null ["abc" 1 nil])
+@result{} t
+@end group
 @end example
 @end defun
 
index bf5495baac31bbf2e213d20539f297d85a31c392..8dc91471312087671dcb980fdd948e084abf5ddb 100644 (file)
@@ -261,11 +261,13 @@ If SEQ is empty, return INITIAL-VALUE and FUNCTION is not called."
     t))
 
 (cl-defgeneric seq-some (pred seq)
-  "Return any element for which (PRED element) is non-nil in SEQ, nil otherwise."
+  "Return non-nil if (PRED element) is non-nil for any element in SEQ, nil otherwise.
+If so, return the non-nil value returned by PRED."
   (catch 'seq--break
     (seq-doseq (elt seq)
-      (when (funcall pred elt)
-        (throw 'seq--break elt)))
+      (let ((result (funcall pred elt)))
+        (when result
+          (throw 'seq--break result))))
     nil))
 
 (cl-defgeneric seq-count (pred seq)
@@ -280,8 +282,8 @@ If SEQ is empty, return INITIAL-VALUE and FUNCTION is not called."
   "Return the first element in SEQ that equals to ELT.
 Equality is defined by TESTFN if non-nil or by `equal' if nil."
   (seq-some (lambda (e)
-                (funcall (or testfn #'equal) elt e))
-              seq))
+              (funcall (or testfn #'equal) elt e))
+            seq))
 
 (cl-defgeneric seq-uniq (seq &optional testfn)
   "Return a list of the elements of SEQ with duplicates removed.
index efbb90dd988fad78b74a4f1a1e435ed69a2ff4cf..07a183d024e9643a287be04af17b06f41b7174ee 100644 (file)
@@ -131,11 +131,12 @@ Evaluate BODY for each created sequence.
 
 (ert-deftest test-seq-some ()
   (with-test-sequences (seq '(4 3 2 1))
-    (should (= (seq-some #'test-sequences-evenp seq) 4))
-    (should (= (seq-some #'test-sequences-oddp seq) 3))
+    (should (seq-some #'test-sequences-evenp seq))
+    (should (seq-some #'test-sequences-oddp seq))
     (should-not (seq-some (lambda (elt) (> elt 10)) seq)))
   (with-test-sequences (seq '())
-    (should-not (seq-some #'test-sequences-oddp seq))))
+    (should-not (seq-some #'test-sequences-oddp seq)))
+  (should (seq-some #'null '(1 nil 2))))
 
 (ert-deftest test-seq-contains ()
   (with-test-sequences (seq '(3 4 5 6))