8000 GitHub - OlegAlexander/FSharp.Core.Fluent: Fluent members for F# FSharp.Core functions
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OlegAlexander/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)

About

Fluent members for F# FSharp.Core functions

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • F# 100.0%
0