Arc Cross Reference |
some[procedure] some test seq[procedure] all test seqsome sees if some elemnts in seq satisfies test. test is testified (if it's not a function, it's converted to a function [is _ test]). It is scheme:any. (def some (test seq) (let f (testify test) (if (alist seq) (reclist f:car seq) (recstring f:seq seq)))) all sees if all elements in seq satisfies test. test is testified. It is scheme:every. (def all (test seq) (~some (complement (testify test)) seq)) See also: reclist, recstring, testify. Categorys:sequence
| AboutAlphabetical Indexa b c d e f g h i j k l m n o p q r s t u v w x y z other ReleasesRelated |