mirror of
https://github.com/Smaug123/nix-maui
synced 2025-10-11 04:08:44 +00:00
11 lines
207 B
Forth
11 lines
207 B
Forth
namespace MauiDotnetFlake
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module Async =
|
|
|
|
let map<'a, 'b> (f : 'a -> 'b) (x : Async<'a>) : Async<'b> =
|
|
async {
|
|
let! x = x
|
|
return f x
|
|
}
|