I know in Julia I can do parse(BigFloat, x) where x might be a string or the result of readline(). However, what if I want to specify a precision to my BigFloat within the parse function?
Like you can do BigFloat(pi, precision = 50).
I believe this can be generalized to cases where you put a function, a constructor or a type into another function and you want to specify arguments of the former one.