nocheroot
2018-5-14 17:20:21

@nocheroot has joined the channel


ben
2018-5-15 04:48:59

is there a built-in function to check if a list of things all cause a function to give the same result?


ben
2018-5-15 04:49:46

if f returns booleans, the function I’m thinking of should give the same result as: (lambda (f x*) (or (andmap f x*) (not (ormap f x*))))


ben
2018-5-15 04:58:23

or, for any f, the result should be the same as (lambda (f x*) (= 1 (set-count (list->set (map f x*)))))