Skip to content

Use of the _.Property shorthand in delegates #1308

@lucasteles

Description

@lucasteles

I propose we enable to use of the new _.Property shorthand for accessor within Func<> and Expression<Func<>> as normal lambdas

["foo"; "42"; ""] |> List.map _.Length // [3; 2; 0]

open System.Linq
["foo"; "42"; ""].Select(_.Length) // fail

The existing way of approaching this problem in F# is:

Using normal lambdas

["foo"; "42"; ""].Select(fun s -> s.Length) 

Pros and Cons

The advantages of making this adjustment to F# are : make the syntax consistent

The disadvantages of making this adjustment to F# are : N/A

Extra information

Estimated cost (XS, S, M, L, XL, XXL):

Related suggestions:
#506

Affidavit (please submit!)

Please tick these items by placing a cross in the box:

  • This is not a question (e.g. like one you might ask on StackOverflow) and I have searched StackOverflow for discussions of this issue
  • This is a language change and not purely a tooling change (e.g. compiler bug, editor support, warning/error messages, new warning, non-breaking optimisation) belonging to the compiler and tooling repository
  • This is not something which has obviously "already been decided" in previous versions of F#. If you're questioning a fundamental design decision that has obviously already been taken (e.g. "Make F# untyped") then please don't submit it
  • I have searched both open and closed suggestions on this site and believe this is not a duplicate

Please tick all that apply:

  • This is not a breaking change to the F# language design
  • I or my company would be willing to help implement and/or test this

For Readers

If you would like to see this issue implemented, please click the 👍 emoji on this issue. These counts are used to generally order the suggestions by engagement.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions