Skip to content

fsprojects/FSharp.Core.Fluent

Repository files navigation

FSharp.Core.Fluent NuGet Badge

Open in Gitpod

Provides fluent members for FSharp.Core functions like so:

open FSharp.Core.Fluent

let xs = [ 1 .. 10 ]

xs.map(fun x -> x + 1).filter(fun x -> x > 4).sort()

xs.map(fun x -> x + 1)
  .filter(fun x -> x > 4)
  .sort()

Contributing

This is how you build the repo after cloning:

dotnet tool restore
dotnet paket restore
dotnet fake build

Docs are generated and deployed to the docs site after every successful push to this repo.

We accept pull requests!

Current maintainers

The default maintainer account for projects under "fsprojects" is @fsprojectsgit - F# Community Project Incubation Space (repo management)