/// I can't do this
let max = float n |> sqrt |> int64 |> Math.BigInt
/// But this is allowed
let max = Math.BigInt(float n |> sqrt |> int64)
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
Class constructors cannot be used without arguments. You can write
if you like. (Offhand I don't know the reason for this restriction, though.) |
|||||||||||||
|
|
In my version of F# (1.9.4.19 on Mono), both versions fail with:
I can use
to get a
to get a |
|||
|
|