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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:14:22+00:00 2026-05-24T05:14:22+00:00

There are many ways functions can be defined in Scala, which leads to confusion

  • 0

There are many ways functions can be defined in Scala, which leads to confusion about when exactly function parameter types are required. I usually start with the simplest possible definition and work my way down until compiler errors go away. I’d rather actually understand how this works.

For example:

_ + _

(x, y) => x + y

(x: Int, y: Int) => x + y

def sum(x: Int, y: Int) = x + y // as pointed out, this is a method,
                                // which not a function

Bonus points for a link to the documentation.

  • 1 1 Answer
  • 1 View
  • 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-24T05:14:23+00:00Added an answer on May 24, 2026 at 5:14 am

    Well there are some corner cases like: a recursive method must be explicitly typed, but normally the rule of thumb is as follows: types have to come from somewhere.

    Either they come from the reference part:

    val function: (Int, Int) => Int = _ + _
    

    or from the object part:

    val function = (x: Int, y: Int) => x + y
    

    does not really matter. (in Scala!)

    I know you question is about functions, but here is a similar example to illustrate Scala’s type inference:

    // no inference
    val x: HashMap[String, Int] = new HashMap[String, Int]()
    val x: HashMap[String, Int] = new HashMap[String, Int]
    
    // object inference
    val x: HashMap[String, Int] = new HashMap()
    val x: HashMap[String, Int] = new HashMap
    val x: HashMap[String, Int] = HashMap() // factory invocation
    
    // reference inference
    val x = new HashMap[String, Int]()
    val x = new HashMap[String, Int]
    val x = HashMap[String, Int]() // factory invocation
    
    // full inference
    val x = HashMap("dog" -> 3)
    

    EDIT As requested I add the higher-order function case.

    def higherOrderFunction(firstClassFunction: (Int, Int) => Int) = ...
    

    can be called like this:

    higherOrderFunction(_ + _) // the type of the firstClassFunction is omitted
    

    But, this is not a special case. The type of the reference is explicitly mentioned. The following code illustrates a similar example.

    var function: (Int, Int) => Int = null
    function = _ + _
    

    This is roughly equivalent to the higher-order function case.

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

Sidebar

Related Questions

There are many ways by which we can attach an event on an HTML
There are many ways of converting a String to an Integer object. Which is
I can see there are many ways to use jQuery safely in the javascript
There are many ways the value of a <input type="text"> can change, including: keypresses
I've seen the many different ways I can build a function/service to generate short
There're many ways to write an HTTP-status header: HTTP/1.1 404 Not Found Status: 404
There are many ways to Title Case in java . But how do you
As SpriteMethodTest says there are many ways for drawing sprites. Firstly, I tried canvas,
It seems there are many ways to do this, however, none of them make
WPF is great because there are many ways to achieve your goals. For example,

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.