Is it possible to partially apply a function such as bprintf and prevent it from being restricted based on its initial use?
bprintf
I\'d like to do the followin
you can add explicit format argument
let builder = new System.Text.StringBuilder() let append format = Printf.bprintf builder format append "%i" 10 append "%s" "1"