stringify Then
Stringify an AvailObject, using the HookType.STRINGIFICATION hook in the specified AvailRuntime. Stringification will run in a new fiber. If stringification fails for any reason, then the built-in mechanism, available via AvailObject.toString will be used. Invoke the specified continuation with the result.
Parameters
An Avail value.
The text interface for fibers started due to stringification. This need not be the default text interface.
An optional function to set up the fiber prior to starting it.
What to do with the stringification of value.
Stringify a list of Avail, using the HookType.STRINGIFICATION hook associated with the specified runtime. Stringification will run in parallel, with each value being processed by its own new fiber. If stringification fails for a value for any reason, then the built-in mechanism, available via AvailObject.toString will be used for that value. Invoke the specified continuation with the resulting list, preserving the original order.
Parameters
Some Avail values.
The text interface for fibers started due to stringification. This need not be the default text interface.
What to do with the resulting list.