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
List.map f (List.repeat n a)--> List.repeat n (f a)Array.map f (Array.repeat n a)--> Array.repeat n (f a)String.map f (String.repeat n (String.fromChar a))--> String.repeat n (f a)-- note that the normal `String.repeat` does not work. a : String, f : Char -> Char
(found in the FSharpLint default config)
The text was updated successfully, but these errors were encountered: