All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fsharp-giraffe-server.Helpers.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
  namespace OpenAPI

  module Helpers =

    let (>=>) switch1 switch2 =
      match switch1 with
        | Ok v1 ->
          match switch2 with
           | Ok v2 ->
            Ok(v1, v2)
            | Error e -> Error e
        | Error e -> Error e




© 2015 - 2024 Weber Informatics LLC | Privacy Policy