Skip to main content

handle_parallel

Function handle_parallel 

Source
pub fn handle_parallel<F>(
    lines: Vec<String>,
    handler: Arc<F>,
) -> Vec<Result<(), String>>
where F: Fn(&[String], &mut IoContext) -> Option<Result<(), String>> + Send + Sync + 'static,