You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/FSharpPlus/Control/Foldable.fs
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,6 @@ type FoldMap =
148
148
static member inlineFoldMap(x:_ [],f,[<Optional>]_impl:FoldMap)= Array.fold (fun x y -> Plus.Invoke x (f y))(Zero.Invoke ()) x
149
149
150
150
static member inlineFoldMap(x:Map<_,_>,f,[<Optional>]_impl:FoldMap)= Map.fold (fun x _ y -> Plus.Invoke x (f y))(Zero.Invoke ()) x
151
-
static member inlineFoldMap(x:Dictionary<_,_>,f,[<Optional>]_impl:FoldMap)= Dictionary.fold (fun x _ y -> Plus.Invoke x (f y))(Zero.Invoke ()) x
152
151
static member inlineFoldMap(x:IDictionary<_,_>,f,[<Optional>]_impl:FoldMap)= Dict.fold (fun x _ y -> Plus.Invoke x (f y))(Zero.Invoke ()) x
153
152
static member inlineFoldMap(x:IReadOnlyDictionary<_,_>,f,[<Optional>]_impl:FoldMap)= IReadOnlyDictionary.fold (fun x _ y -> Plus.Invoke x (f y))(Zero.Invoke ()) x
154
153
@@ -191,7 +190,6 @@ type Fold =
191
190
static memberFold(x:Set<_>,f,z ,[<Optional>]_impl:Fold )= Set.fold f z x
192
191
static memberFold(x:_ [],f,z ,[<Optional>]_impl:Fold )= Array.fold f z x
193
192
static memberFold(x:Map<_,_>,f,z ,[<Optional>]_impl:Fold )= Map.fold (fun s _ -> f s) z x
194
-
static memberFold(x:Dictionary<_,_>,f,z ,[<Optional>]_impl:Fold )= Dictionary.fold (fun s _ -> f s) z x
195
193
static memberFold(x:IDictionary<_,_>,f,z ,[<Optional>]_impl:Fold )= Dict.fold (fun s _ -> f s) z x
196
194
static memberFold(x:IReadOnlyDictionary<_,_>,f,z ,[<Optional>]_impl:Fold )= IReadOnlyDictionary.fold (fun s _ -> f s) z x
0 commit comments