fsprojects / fsharp-cheatsheet

This cheatsheet aims to succinctly cover the most important aspects of F# 6.0.
http://fsprojects.github.io/fsharp-cheatsheet/
Other
324 stars 60 forks source link

explain use of ' #9

Closed daveyostcom closed 8 months ago

daveyostcom commented 4 years ago

The text should explain the use of the single quote here.

let squareNegateThenPrint' = 
    square >> negate >> print

and here

collections implementing IEnumerable<'T>

and while you're at it, other related topics, such as triple backquotes.

SpiralOSS commented 8 months ago
let squareNegateThenPrint' = 
    square >> negate >> print

Prime tick is in the latest PR, which will be merged shortly.

The others come to come soon.

daveyostcom commented 8 months ago

Ok