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 300045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:52:42+00:00 2026-05-12T06:52:42+00:00

First off, I have a better method of dealing with this issue so it’s

  • 0

First off, I have a better method of dealing with this issue so it’s not a problem.

However, it is something that I don’t understand. Can someone explain this?

When I define the swap function as:

namespace Utilities
module Misc

let Swap (left : 'a byref) (right : 'a byref) =
    let temp = left
    left  <- right
    right <- temp

I am able to use the Swap function like this just fine.

Misc.Swap (&s.[i]) (&s.[j])

But when I define the module like:

namespace Utilities

type Misc =
    static member Swap (left : 'a byref) (right : 'a byref) =
        let temp = left
        left  <- right
        right <- temp

I get the following error on both arguments:

This expression has type  'b byref but is here used with type  'a ref

How did the type inference for the caller’s arguments change by moving the function into a type?

  • 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. Editorial Team
    Editorial Team
    2026-05-12T06:52:42+00:00Added an answer on May 12, 2026 at 6:52 am

    This may be an interaction with the tuple transformation that the F# compiler performs on class methods.

    Reflector reports the type of Misc.Swap as:

    public static void Swap<a>(ref a left, ref a right);
    

    so we can see here that the compiler has transformed the curried arguments into tupled form.

    Defining the method with tupled arguments avoids this problem:

    type Misc =
        static member Swap(left : 'a byref, right : 'a byref) =
            let temp = left
            left  <- right
            right <- temp    
    
    > let s = Array.init 3 (fun i -> i)
    > val s : int array = [|0; 1; 2|]
    > Misc.Swap (&s.[2], &s.[0]) 
    > s;;
    > val s : int array = [|2; 1; 0|]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer A more elaborate version of this function is in use… May 13, 2026 at 9:09 am
  • Editorial Team
    Editorial Team added an answer Is an ASP.NET Button control calling it? That's probably why… May 13, 2026 at 9:09 am
  • Editorial Team
    Editorial Team added an answer Are you sure that your staging instance is running in… May 13, 2026 at 9:09 am

Related Questions

First off, I have a better method of dealing with this issue so it's
I have a Form in my application that displays some data. When I first
I have a database that has two tables, one of which contains a foreign
I have an ASP.net web service that I'm using for a web application which
So I have written a Quaternion based 3D Camera oriented toward new programmers so

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.