Std.Audio.slice
fn
slice: &Std.Audio.Pcm -> Int -> Int -> Result[Std.Audio.Pcm, Std.Audio.AudioError]This is a callable function.
What it does
Exactly `frames` frames starting at `start`, silent past the end.
This is the pull contract a render slice keeps: the caller receives the
number of frames it asked for, never fewer, and the request is bounded.
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.
- Names inside [ ] are type arguments, such as the item type held by a collection.
- Result makes success and recoverable failure part of the function's type.
