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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T15:41:50+00:00 2026-05-30T15:41:50+00:00

Given that there is a function foo[A, B, C]( func: (a: A, b: B,

  • 0

Given that there is a functionfoo[A, B, C]( func: (a: A, b: B, c: C) => B) and I want to pass in this function def secondOfThree[A, B, C](a: A, b: B, c: C): B = b

I can call foo with foo(secondOfThree) which is ugly, but works fine.. However, I would expect to be able to call foo with something along the lines of foo(case (_, b, _) => b) however this doesn’t work.

So what’s the clean idiomatic scala way of creating a simple unnamed extracting function?

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

    You don’t need the case keyword, but Scala does need to know the types:

    scala> def foo[A, B, C](func: (A, B, C) => B) = ...
    foo: [A, B, C](func: (A, B, C) => B)Nothing
    
    scala> foo[Symbol, Int, Char]((_, b, _) => b)
    

    If the types are known to foo, then the call doesn’t need to specify them:

    scala> def foo(func: (Symbol, Int, Char) => Int) = func('a, 2, 'c') + 5
    foo: (func: (Symbol, Int, Char) => Int)Int
    
    scala> foo((_, b, _) => b)
    res3: Int = 7
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a built-in function/method that can check if a given string is a
I know that you can call functions using variable names like this: $foo =
This is not a technical question, but given that there are a few iPhone
Given a function that takes an output stringstream as an argument: void Foo(const std::ostringstream&
Is there a function that given a vector of numbers, returns another vector with
Is there a POSIX function that will give me the size of a directory
I could only find the function confirm() that gives OK/Cancel buttons. Is there any
Given that there are many sizes and color depths for different phones (even for
Original Problem: I have 3 boxes each containing 200 coins, given that there is
Is there a way to read a locked file across a network given that

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.