Namespace: FsToolkit.ErrorHandling
Lifts a value into a Job.
Function Signature:
'a -> Job<'a>Job.singleton 42
// job { return 42 }Job.singleton "hello"
// job { return "hello" }// Lift an existing value into the Job context for use with other Job functions
let value = { Name = "Alice"; Age = 30 }
Job.singleton value
// job { return { Name = "Alice"; Age = 30 } }