(self: Options.Options<A>)
| 575 | |
| 576 | /** @internal */ |
| 577 | export const repeated = <A>(self: Options.Options<A>): Options.Options<Array<A>> => |
| 578 | makeVariadic(self, Option.none(), Option.none()) |
| 579 | |
| 580 | /** @internal */ |
| 581 | export const withAlias = dual< |
nothing calls this directly
no test coverage detected