* Maps this supervisor to another one, which has the same effect, but whose * value has been transformed by the specified function.
(f: (a: T) => B)
| 76 | * value has been transformed by the specified function. |
| 77 | */ |
| 78 | map<B>(f: (a: T) => B): Supervisor<B> |
| 79 | |
| 80 | /** |
| 81 | * Returns a new supervisor that performs the function of this supervisor, and |
no outgoing calls