Let's say I have this code
let identifier = spaces_surrounded (many1Satisfy isLetter)
I was wondering if it there was any native F# function that allowed me to refactor it to
let identifier = spaces_surrounded $ many1Satisfy isLetter
that is, something such as
let ($) f1 f2 = f1 (f2)
(that is if I am not mistaken, my Haskell skills are not too sharp..).
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…