singleton
'a -> Job<'a>Examples
Example 1
Job.singleton 42
// job { return 42 }Example 2
Job.singleton "hello"
// job { return "hello" }Example 3
// 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 } }Last updated