[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

apiとhaskellに関するkiyo_hikoのブックマーク (1)

  • Haskell : all

    ZVON > References > Haskell reference Intro / Search / ZVON | Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random Module: Prelude Function: all Type: (a -> Bool) -> [a] -> Bool Description: returns True if all items in the list fulfill the condition Related: (&&), and, any, elem, not, n

    kiyo_hiko
    kiyo_hiko 2013/11/07
    空リストに対する振る舞いを忘れることがある。再現→「> any (\x -> 0 < x) [] False」「> all (\x -> 0 < x) [] True」 allだとtrueでanyだとfalseだ。
  • 1