This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Gathers progression information of all computations within the `operation` block. | |
/// | |
/// This free function sets the `@TaskLocal` value `Task.unsafeProgress`, which serves as an | |
/// indicator to any task in the structure concurrency tree to start gathering progression information. | |
/// Functions supporting _progress_ will forward such data into the `progress` handler. | |
/// | |
/// ## Features | |
/// - Progress data forwarding to the `progress` handler. | |
/// - No locks (and no thread hopping). | |
/// - Supports concurrent operations. |