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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:56:29+00:00 2026-05-31T16:56:29+00:00

If papply returns a function of less arity than an input function, is there

  • 0

If papply returns a function of less arity than an input function, is there a similar FP operation with returns a function which returns a value regardless of the value of the input function? If so, is there a C# equivalent?

Consider a C# function that returns void which you want to convert into an expression, and you’ve done this many many times by writing an anonymous function wrapper like (args) => f(args); return null;.

In C#,

public Func<T1, T2, ..., T8, TResult> WhatIsMyName<T1, T2, ..., T8, TResult> (Action<T1, T2, ..., T8> action, TResult value = default(TResult))
{
    return (t) => { action(t); return value; }
}

which you would ideally call like FP.WhatIsMyName(voidfunc) and so avoid having to cast.

In Clojure,

(defn whatismyname? [f x] 
  (f)
  x)
  • 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-31T16:56:31+00:00Added an answer on May 31, 2026 at 4:56 pm

    You could write a method that creates the anonymous function for you.

    public Action<T> Ignore<T,TResult>(Func<T,TResult> func)
    {
        return (args) => { func(args); return; }
    }
    

    Although your code technically returns args, which would be the following format.

    public Func<T,T> Ignore<T,TResult>(Func<T,TResult> func)
    {
        return (args) => { func(args); return args; }
    }
    

    In either case you can pass it into another method like this Method(Ignore(DoSomething)); or you can call it yourself like this Ignore(DoSomething)(1);.

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

Sidebar

Related Questions

Is there any way to find out , which worker process among the Pool
I often need to apply a function to each pair of columns in a
It seems that when an exception is raised from a multiprocessing.Pool process, there is
I want to use multithreading to make my script faster... I'm still new to
I've made a generic extension method that executes an action on an object and
I need to extract a number of unique elements from a collection given a
I've been looking at at some of the java primitive collections ( trove ,
I'm trying to, as the title says, change elements from my dataframe from one
I find myself in a need of working with functions and objects who take
I need to represent a composite pattern with Entity Framework code first. How can

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.