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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:26:38+00:00 2026-05-16T15:26:38+00:00

I have a simple problem and as I’m an F# newbie I can’t seem

  • 0

I have a simple problem and as I’m an F# newbie I can’t seem to figure out how to do this. I have a list of tuples:

let l = [ (a, 2); (b, 3); (c, 2); (d, 6) ]

that I want to transform into this:

let r = [ (a, 2); (b, 5); (c, 7); (d, 13) ]

This simply adds the values of the second element in each tuple: 2 + 3 + 2 + 6. The objects a, b, c and d are complex objects that I simply want to keep.

I thought I should use List.scan for this. It takes a list, threads an accumulator through the computation and returns a list:

let r = l |> List.scan (fun (_, s) (o, i) -> (o, s + i)) (??, 0) |> List.tail

But I don’t know what to fill in for the question marks. I’m not interested in the initial state except for the 0. And I don’t want to specify some ’empty’ instance of the first tuple element.

Or is there a simpler way of doing this?

  • 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-16T15:26:38+00:00Added an answer on May 16, 2026 at 3:26 pm

    You can use first element as an initial state:

    let l = [ ("a", 2); ("b", 3); ("c", 2); ("d", 6) ]
    
    let x::xs = l
    let res = (x, xs) ||> List.scan (fun (_, x) (o, n) -> o, x + n) // [("a", 2); ("b", 5); ("c", 7); ("d", 13)]
    

    Special case with empty list should be processed separately

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

Sidebar

Related Questions

I have simple LINQ problem that I can't figure out. I have a table
I have a simple problem I can't seem to figure out. I have a
I have a simple problem with XML got from database. Now, this XML can
I have a simple problem: I want to construct a regex that matches a
I have a simple problem, but can't come with a simple solution :) Let's
I have a simple problem, but I can't find out how to solve it.
I have a simple problem and i can't work out what is going on,
i have a simple problem with that fetch_array. i like to read out x1
I have a simple problem: to collect objects into a list and traverse this
I have very simple problem that I can't solve. I need to do something

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.