next | previous | forward | backward | up | top | index | toc | Macaulay2 website
Macaulay2Doc :: all(BasicList,Function)

all(BasicList,Function) -- whether all elements of a list satisfy a specified condition

Synopsis

Description

i1 : all({1,2,3,4}, even)

o1 = false
i2 : all({2,4,6,8}, even)

o2 = true
i3 : all(7, x -> x < 10)

o3 = true

See also

Ways to use this method: