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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:10:57+00:00 2026-06-13T19:10:57+00:00

I have a foo function defined as follows fun foo x y = x

  • 0

I have a foo function defined as follows

fun foo x y = x (x (x y));

How to deduce the function type?

The answer is:

val foo = fn : ('a -> 'a) -> 'a -> 'a
  • 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-06-13T19:10:58+00:00Added an answer on June 13, 2026 at 7:10 pm

    This process is called type inference which is done in SML by Hindley–Milner algorithm.

    First let’s start with a generic type signature for foo:

    val foo = fn : 'c -> 'b -> 'a
    

    where x has type 'c and y has type 'b.

    We have the following steps:

    • x y is function application, x should have signature 'b -> 'd and we have an equation 'c = 'b -> 'd and x y has type 'd.
    • x (x y) means we apply a function type 'b -> 'd on an argument type 'd so 'd = 'b and 'c = 'b -> 'b.
    • x (x (x y)) means we apply a function type 'b -> 'b on an argument type 'b and return 'a (type of foo); it suffices 'b = 'a.
    • after unification, we have 'c = 'a -> 'a and 'b = 'a and foo has a generic type: val foo = fn : ('a -> 'a) -> 'a -> 'a
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a function defined like this: class Foo() { public: void bar(MyClass*
Suppose I have a function (foo) defined as (defun foo () (read-from-minibuffer What? ))
I have this opaque type type_t and a function prototype like foo(type_t *t) and
Suppose I have any variable, which is defined as follows: var a = function()
I have class Foo(): function bar(): pass function foobar(): pass Rather than executing each
I have a function foo that accepts a Boolean function def foo( f:(_)=>Boolean )
Say I have a function foo: (defun foo (x y &rest args) ...) And
Say I have a function foo that I want to call n times. In
I have a script which similar to this: foo.php class Foo { function Foo()
In my script, I have a function foo which basically uses pynotify to notify

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.