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.
/// 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)
share|improve this question

2 Answers

up vote 3 down vote accepted

Class constructors cannot be used without arguments. You can write

let max =  float n |> sqrt |> int64 |> (fun x -> Math.BigInt(x))

if you like. (Offhand I don't know the reason for this restriction, though.)

share|improve this answer
Is int64 a class? – Unknown May 11 '09 at 3:51
No, in this context it's a function defined in research.microsoft.com/en-us/um/cambridge/projects/fsharp/… – Brian May 11 '09 at 5:14
Also can you tell me where to find the square root for a BigInt? – Unknown May 11 '09 at 5:15
There is no Sqrt function defined for BigInt in the library. – Brian May 11 '09 at 6:08
1  
@Brian do you know if there will be one? – Unknown May 11 '09 at 7:28
show 1 more comment

In my version of F# (1.9.4.19 on Mono), both versions fail with:

The member or object constructor 'BigInt' takes 0 argument(s) but is here given 1. The required signature is 'Math.BigInt()'.

I can use

let max =  float n |> sqrt |> int64 |> Math.BigInt.of_int64

to get a bigint or

let max =  float n |> sqrt |> int64 |> Math.BigInt.FromInt64

to get a Math.BigInt.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.