mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
195 B
195 B
META
description=List.drop_if filters elements where predicate returns false
type=repl
SOURCE
» List.drop_if([1, 2, 3, 4, 5], |x| x > 2)
OUTPUT
[1, 2]
PROBLEMS
NIL