(value: LazyArg<A>)
| 590 | |
| 591 | /** @internal */ |
| 592 | export const sync = <A>(value: LazyArg<A>): Config.Config<A> => { |
| 593 | return suspend(() => succeed(value())) |
| 594 | } |
| 595 | |
| 596 | /** @internal */ |
| 597 | export const hashMap = <A>(config: Config.Config<A>, name?: string): Config.Config<HashMap.HashMap<string, A>> => { |