Source
Prelude
- let all p = foldr (\ x y -> p x && y) True in all not [True, False]
- foldr (\ x y -> not x && y) True [True, False]
- foldr (\ x y -> not x && y) True (True : [False])
- (\ x y -> not x && y) True
(foldr (\ x y -> not x && y) True [False])
- not True && foldr (\ x y -> not x && y) True [False]
- False && foldr (\ x y -> not x && y) True [False]
- False