MCPcopy Index your code
hub / github.com/Effect-TS/effect / group

Function group

packages/effect/src/internal/console.ts:79–88  ·  view source on GitHub ↗
(options?: {
  label?: string | undefined
  collapsed?: boolean | undefined
})

Source from the content-addressed store, hash-verified

77
78/** @internal */
79export const group = (options?: {
80 label?: string | undefined
81 collapsed?: boolean | undefined
82}) =>
83 consoleWith((_) =>
84 fiberRuntime.acquireRelease(
85 _.group(options),
86 () => _.groupEnd
87 )
88 )
89
90/** @internal */
91export const info = (...args: ReadonlyArray<any>) => consoleWith((_) => _.info(...args))

Callers

nothing calls this directly

Calls 2

consoleWithFunction · 0.85
groupMethod · 0.65

Tested by

no test coverage detected