Skip to content

Latest commit

 

History

History
101 lines (88 loc) · 1.51 KB

ROADMAP.md

File metadata and controls

101 lines (88 loc) · 1.51 KB

Progress

Types

  • Fold
  • FoldM

Folding

  • fold
  • foldM
  • scan
  • prescan
  • postscan

Folds

  • mconcat
  • foldMap
  • head
  • last
  • lastDef
  • lastN
  • null
  • length
  • and
  • or
  • all
  • any
  • sum
  • product
  • mean
  • variance
  • std
  • maximum
  • maximumBy (covered by maximum)
  • minimum
  • minimumBy (covered by minimum)
  • elem
  • notElem
  • find
  • index
  • lookup
  • elemIndex
  • findIndex
  • random
  • randomN
  • mapM_
  • sink

Container folds

  • list
  • revList
  • nub
  • eqNub
  • set
  • hashSet
  • map
  • foldByKeyMap
  • hashMap
  • foldByKeyHashMap
  • vector

Utilities

  • purely
  • purely_
  • impurely
  • impurely_
  • generalize
  • simplify
  • hoists
  • duplicateM
  • _Fold1
  • premap
  • premapM
  • prefilter
  • prefilterM
  • predropWhile
  • drop
  • dropM
  • Handler
  • handles
  • foldOver
  • EndoM
  • HandlerM
  • handlesM
  • foldOverM
  • folded
  • filtered
  • groupBy
  • either
  • eitherM
  • nest

TODO