Snippets

Cameron Presley Recreating List.Filter

Created by Cameron Presley

File custom_list_filter_implementation.fs Added

  • Ignore whitespace
  • Hide word diff
+let rec customFilter elements func =
+    match elements with
+    | [] -> []
+    | head::tail -> if func head then head :: customFilter tail func else customFilter tail func
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.