Closed hafuu closed 8 years ago
hash : list<int> -> int や hash : list<'a> -> int は Core.Operators.hashにマッチするが、 hash : list<?> -> int はマッチしない。
hash : list<int> -> int
hash : list<'a> -> int
Core.Operators.hash
hash : list<?> -> int
Microsoft.FSharp.Core.Operators.hash: 'T -> int, module value, distance: 1 when 'T : equality
https://github.com/hafuu/FSharpApiSearch/blob/ed087df67492c162d73af9f547d31781798f0be0/src/FSharpApiSearch/Matcher.fs#L501
ここにWildcardを追加すれば良さそう
hash : list<int> -> int
やhash : list<'a> -> int
はCore.Operators.hash
にマッチするが、hash : list<?> -> int
はマッチしない。