package loop
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Loop
Source
`loop fn` will loop the `fn` function infinitely.
If you want to break the loop, or skip an iteration, call `break ()` or `continue ()` within it.
`break ()` breaks out of a loop.
`continue ()` skips the rest of the current loop iteration and begins the next iteration.