Pudu programming language
Menu

Std.App.start

1 declaration

fn

start: &Std.App.App -> Std.App.Report

This is a callable function.

What it does

Start every stage in order.

A stage that fails stops every stage already started, in reverse, before

answering. A caller told that a start failed will not then be told to clean

up after it, so the cleanup happens here or it does not happen.

Read the signature

  • The text after the name is the type checked by Pudu.
  • Read arrows from left to right: inputs come first, and the final type is returned.
  • & borrows a value for this call instead of moving or copying it.

Back to Std.AppSearch related declarations