Companion F# stdlib
Find a file
2024-08-29 11:35:40 +02:00
src first 2024-08-29 11:35:03 +02:00
tests first 2024-08-29 11:35:03 +02:00
.gitignore first 2024-08-29 11:35:03 +02:00
LICENSE first 2024-08-29 11:35:03 +02:00
pentole.sln first 2024-08-29 11:35:03 +02:00
readme.org test code markup 2024-08-29 11:35:40 +02:00

Pentole

Pentole aims to be a companion to the F# standard library. It consists of various extensions to the core library types and additional libraries for common operations.

This is a list of the provided modules:

  • Option: extend the `Option` type with auxiliary functions
  • Path: datatype to represent Posix paths
  • Result: extend the Result type with auxiliary functions
  • String: extensive string manipulation library
  • TestExtensions: provide methods that complements `Nunit.Framework.Assert`

Goals

The goals of Pentole are the following:

  • target developers that work with distributed systems
  • avoid OOP
  • use exceptions exclusively when they are the most intuitive approach for the code at hand
  • prefer the ocaml coding style rather than C# Pascal Case oriented style
  • avoid dependencies to other companion libraries `FSharpPlus` and `FSharpx`, thus reimplementing some of their functions verbatim
  • be well documented and tested
  • target GNU/Linux exclusively