Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions ExtCore/Collections.List.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(*
(*

Copyright 2010-2012 TidePowerd Ltd.
Copyright 2013 Jack Pappas
Expand All @@ -23,8 +23,10 @@ module ExtCore.Collections.List

open LanguagePrimitives
open OptimizedClosures
open ExtCore

let private checkNonNull name value =
if value = Unchecked.defaultof<_> then
raise <| System.ArgumentNullException(name)

/// <summary>A curried "cons" operator.</summary>
/// <param name="list"></param>
Expand Down Expand Up @@ -776,4 +778,3 @@ let distinct (list : 'T list) : 'T list =

// Return the result list.
result