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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T17:22:57+00:00 2026-06-11T17:22:57+00:00

This is curried function that examines only the first two list elements. fun inn

  • 0

This is curried function that examines only the first two list elements.

fun inn list f = f(hd(list), hd(tl(list)));

What I would like to know is any ways that I can go through the rest of the list elements.
I don’t know how I make it recursive.
Can anybody help me?

  • 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-11T17:22:58+00:00Added an answer on June 11, 2026 at 5:22 pm

    First remark: never use hd and tl. Use pattern matching instead.

    I don’t now what exactly you want your function to do, but here is one that iterates over a list and applies f to every element:

    fun iter f l =
      case l of
        [] => ()
      | x::xs => (f x; iter f xs)
    

    which can be written more concisely as

    fun iter f [] = ()
      | iter f (x::xs) = (f x; iter f xs)
    

    For what’s it worth, this very function is available in the standard basis library under the name List.app.

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

Sidebar

Related Questions

this is my first question in here, and I would like to ask if
I'd like to make a grammar that will allow curried function calls. That is:
I have a curried function that I'd like it to support different types of
Why does this attempt at creating a list of curried functions not work? def
I have a setup that looks like this. class Checker { // member data
I have some pages that i acces by jquery $.post like this: $.post(url, {name:
In Scala one can write (curried?) functions like this def curriedFunc(arg1: Int) (arg2: String)
Possible Duplicate: Applying an argument list to curried function using foldLeft in Scala Consider:
This works. $(document).ready(function(){ $(.items article).click(function(){ window.location=$(this).find(a).attr(href); return false; }); }); However , when the
I need to be able to bypass the first function of a toggle and

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.