Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 114329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:50:36+00:00 2026-05-11T02:50:36+00:00

I’m trying to get the exact equivalent (not functional) of this vb.net code in

  • 0

I’m trying to get the exact equivalent (not functional) of this vb.net code in F#:

Function FastPow(ByVal num As Double, ByVal exp As Integer) As Double    Dim res As Double = 1    If exp < 1 Then       If exp = 0 Then Return res       exp = -exp       num = 1 / num    End If    Do While exp > 1       If exp Mod 2 = 1 Then           res = res * num       num = num * num       exp = exp >> 1    Loop    Return res * num End Function 

I wrote this:

let FastPow num exp =    let mutable ex = exp    let mutable res = 1    let mutable n = num    if ex < 1 then       if ex = 0 then res       ex <- -ex       n <- 1 / n    while ex > 1 do       if (ex % 2 = 1) then           res <- res * n       n <- n * n       exp >>> 1    res * n 

but in the line ‘if ex = 0 then res’ at res I got an error:
‘This expression has type int but is here used with type unit’. I cannot understand why it gives me that error.
Edit: i actually got a warning as well:
‘This expression should have type ‘unit’, but has type ‘int’.’
at ‘if (ex % 2 = 1) then’

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T02:50:37+00:00Added an answer on May 11, 2026 at 2:50 am

    In F#, a function’s return value is the last expression evaluated in the function. So, lets focus on the following:

       if ex < 1 then       if ex = 0 then res    (* <--- this is not an early return *)       ex <- -ex             (* <--- F# evaluates this code after the *)       n <- 1 / n            (*      if statement *) 

    Additionally, if statements have return values, which also happens to be the last value executed in the if statement. If an if statement isn’t the return value of a function, it should have the return type unit. Notice that variable assignment has a return type of unit.

    We need to rewrite your code to accomodate your early return, so we can do this:

    let FastPow2 num exp =     if exp = 0 then 1     else         let mutable ex = exp         let mutable res = 1         let mutable n = num         if ex < 1 then             ex <- -ex             n <- 1 / n         while ex > 1 do             if (ex % 2 = 1) then  (* still have a bug here *)                 res <- res * n             n <- n * n             exp >>> 1  (* <--- this is not a variable assignment *)         res * n 

    We still have a bug, although I think F# is reporting the error in the wrong place. The expression exp >>> 1 returns an int, it does not assign any variables, so its not equivalent to your original C# code. I think you meant to use the ex variable instead. We can fix your code as follows:

    let FastPow2 num exp =     if exp = 0 then 1     else         let mutable ex = exp         let mutable res = 1         let mutable n = num         if ex < 1 then             ex <- -ex             n <- 1 / n         while ex > 1 do             if (ex % 2 = 1) then                  res <- res * n             n <- n * n             ex <- ex >>> 1         res * n 

    Now your function is fixed, but its really really ugly. Lets convert it to more idiomatic F#. You can replace the if statement with pattern matching, and replace the while loop with recursion:

    let FastPow2 num exp =     match exp with      | 0 -> 1     | _ ->         let rec loop ex res n =             if ex > 1 then                 let newRes = if ex % 2 = 1 then res * n else res                 loop (ex >>> 1) newRes (n * n)             else res * n          let ex, n = if exp < 1 then (-exp, 1 / num) else (exp, num)         loop ex 1 n 

    Much better! Theres still some more room to beautify this function, but you get the idea 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 192k
  • Answers 192k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If you're just reading, you're fine. Each iterator will be… May 12, 2026 at 6:24 pm
  • Editorial Team
    Editorial Team added an answer Check out Designing With Web Standards by Jeffrey Zeldman. May 12, 2026 at 6:24 pm
  • Editorial Team
    Editorial Team added an answer The view containing the button must be auto-resized using your… May 12, 2026 at 6:24 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.