We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5519280 commit ce2cf7dCopy full SHA for ce2cf7d
src/FSharpPlus/Control/Functor.fs
@@ -105,7 +105,7 @@ type Map =
105
static member Map ((x: string , f ), _mthd: Map) = String.map f x
106
static member Map ((x: StringBuilder , f ), _mthd: Map) = StringBuilder (String.map f (string x))
107
static member Map ((x: Set<_> , f ), _mthd: Map) = Set.map f x
108
- static member Map ((_: Set2<'T> , _: 'T->'U), _mthd: Map) = Set2<'U>()
+ static member Map ((x: HashSet<_ > , f ), _mthd: Map) = HashSet.map f x
109
110
111
static member inline Invoke (mapping: 'T->'U) (source: '``Functor<'T>``) : '``Functor<'U>`` =
0 commit comments