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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:00:19+00:00 2026-05-13T15:00:19+00:00

I found that: abs -10 abs -10L both work. So I wondered how F#

  • 0

I found that:

abs -10
abs -10L

both work. So I wondered how F# implemented this and did a search in the source code:

    type AbsDynamicImplTable<'T>() = 
    let AbsDynamic x            = AbsDynamicImplTable<_>.Result x

    [<CompiledName("Abs")>]
    let inline abs (x: ^T) : ^T = 
         AbsDynamic x
         when ^T : ^T = absImpl x

And I am confused with these.

As I know in a function like abs, we must compare the input with 0, and there are different 0s for different types.

Thanks.

  • 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-13T15:00:20+00:00Added an answer on May 13, 2026 at 3:00 pm

    To add some explanation to the code posted by ChaosPandion, the problem with F# functions like abs is that they can work with any numeric type. There is no way to express this just using F#/.NET generics – the only supported constrains are that type parameter implements a certain interface or has a constructor, but there is no constraint for numeric types.

    So, F# also supports static constraints (the type parameter is ^a instead of usual 'a) and these are processed at compile time using inlining (this also explains why the function has to be inline). You can write you own function with static constraints by using built-in functions from LanguagePrimitives which contains many useful functions that require some constraints:

    > let inline half (num: ^a) : ^a =
         LanguagePrimitives.DivideByInt< (^a) > num 2
      ;;
    val inline half : ^a -> ^a 
       when ^a : (static member DivideByInt : ^a * int -> ^a)
    
    > half 42.0;;
    val it : float = 21.0
    
    > half 42.0f;;
    val it : float32 = 21.0f
    

    Note that constraints are inferred – DivideByInt requires that the type has DivideByInt member, so our function requires the same thing (and it will work with your own type if it has this member too, which is quite useful!).

    In addition to this, the implementation of abs uses two additional tricks that are allowed only in the F# library – it specifies different code (to be used when inlining) for different types (using when ^a:int = ....) and a fallback case, which uses Abs member, so it will work with any explicitly listed type or a type with Abs member. Another trick is the retype function, which “changes the type”, but doesn’t contain any code – the only purpose is to make the code type-check, but this could be very unsafe – so this is used only in F# libraries.

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

Sidebar

Related Questions

I found that this C++ code: vector<int> a; a.push_back(1); a.push_back(2); vector<int>::iterator it = a.begin();
I'm attempting to decode this bit of code I found in Raphael.js's source (it
im very new to jquery/javascript. So here goes, I found this js code for
I found that approot and sitesroot are used for: \Approot - The customer’s code,
I've adapted this from an example that I found on the 'net... function ratio($a,
I found that c.tld file of jstl-1.2.jar is located in META-INF/*.* inside this jar.
I found that HTMLOptionsCollection object inherits properties and methods from HTMLCollection. HTMLOptionsCollections->HTMLCollection->Object->null Is there
I found that, WebView control (For Windows 8 Metro style app) is the one
I found that when I use HttpWebRequest to establish SSL\TLS connection, it takes near
I found that in the cocos2d Best Practices there is a suggestion to use

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.