All Projects → fsprojects → Fsharp.core.fluent

fsprojects / Fsharp.core.fluent

Licence: other
Fluent members for F# FSharp.Core functions

Programming Languages

fsharp
127 projects

FSharp.Core.Fluent NuGet Badge

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)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].