(react: (position: number) => Doc.Doc<A>)
| 410 | |
| 411 | /** @internal */ |
| 412 | export const column = <A>(react: (position: number) => Doc.Doc<A>): Doc.Doc<A> => { |
| 413 | const op = Object.create(proto) |
| 414 | op._tag = "Column" |
| 415 | op.react = react |
| 416 | return op |
| 417 | } |
| 418 | |
| 419 | /** @internal */ |
| 420 | export const nesting = <A>(react: (level: number) => Doc.Doc<A>): Doc.Doc<A> => { |
no test coverage detected