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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T02:42:59+00:00 2026-06-15T02:42:59+00:00

I have a Dictionary over which I initially iterated thusly: myDictionary |> Seq.iter (fun

  • 0

I have a Dictionary over which I initially iterated thusly:

myDictionary |> Seq.iter (fun kvp -> doSomething kvp.Key kvp.Value)

Later, I discovered that I could make use of the KeyValue active pattern, and do this:

myDictionary |> Seq.iter (fun (KeyValue (k, v)) -> doSomething k v)

Knowing that active patterns aren’t some form of preprocessor directive, how am I able to substitute the kvp argument in the lambda for a function that decomposes it?

  • 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-15T02:43:00+00:00Added an answer on June 15, 2026 at 2:43 am

    Functions arguments call always be destructured using pattern matching. For instance:

    let getSingleton = fun [x] -> x
    let getFirst = fun (a,b) -> a
    let failIfNotOne = fun 1 -> ()
    let failIfNeitherOne = fun (x,1 | 1,x) -> ()
    

    Semantically, fun<pat>-><body> is roughly equivalent to

    fun x ->
    match x with
    |<pat>-><body>

    | _ -> raise MatchFailureException(...)

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

Sidebar

Related Questions

Does VBA have dictionary structure? Like key<>value array?
I have a Dictionary where the key and value are both strings. It's possible
I have a dictionary in my database which has over million records and this
I have a loop which creates a key (based on the alphabet) and value
I have problem with Dictionary(buzzCompaignsPerUserIntersets) . I have dictionary (key = stringand value =
I have a dictionary, user_dict, and create a list for each user value, this
I need to implement a search engine. So I have a dictionary which is
I have a function which returns a List<Dictionary<string, object>> where object is a standard
I have: dictionary = {foo:12, bar:2, jim:4, bob: 17} I want to iterate over
I have a JSON response (which I have no control over) similar to this:

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.