mirror of
https://github.com/Smaug123/WoofWare.Whippet
synced 2025-10-12 11:18:40 +00:00
Import Swagger generator (#15)
This commit is contained in:
13
Plugins/Swagger/WoofWare.Whippet.Plugin.Swagger/List.fs
Normal file
13
Plugins/Swagger/WoofWare.Whippet.Plugin.Swagger/List.fs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace WoofWare.Whippet.Plugin.Swagger
|
||||
|
||||
[<RequireQualifiedAccess>]
|
||||
module internal List =
|
||||
|
||||
let allSome<'a> (l : 'a option list) : 'a list option =
|
||||
let rec go acc (l : 'a option list) =
|
||||
match l with
|
||||
| [] -> Some (List.rev acc)
|
||||
| None :: _ -> None
|
||||
| Some head :: tail -> go (head :: acc) tail
|
||||
|
||||
go [] l
|
Reference in New Issue
Block a user