MCPcopy Create free account
hub / github.com/TanStack/db / concatIterable

Function concatIterable

packages/db-ivm/src/utils.ts:131–137  ·  view source on GitHub ↗
(
  ...iterables: Array<Iterable<T>>
)

Source from the content-addressed store, hash-verified

129export const globalObjectIdGenerator = new ObjectIdGenerator()
130
131export function* concatIterable<T>(
132 ...iterables: Array<Iterable<T>>
133): Iterable<T> {
134 for (const iterable of iterables) {
135 yield* iterable
136 }
137}
138
139export function* mapIterable<T, U>(
140 it: Iterable<T>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected