ok
Function Signature
'ok -> AsyncValidation<'ok, 'error>Examples
Example 1
let result : AsyncValidation<int, string> =
AsyncValidation.ok 42
// async { Ok 42 }Example 2
let result : AsyncValidation<string, string> =
AsyncValidation.ok "hello"
// async { Ok "hello" }Last updated