MCPcopy Index your code
hub / github.com/codeaashu/claude-code / fromArray

Function fromArray

src/utils/generators.ts:84–88  ·  view source on GitHub ↗
(values: T[])

Source from the content-addressed store, hash-verified

82}
83
84export async function* fromArray<T>(values: T[]): AsyncGenerator<T, void> {
85 for (const value of values) {
86 yield value
87 }
88}
89

Callers 1

getStructuredIOFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected