import { forEachStructureChild } from "https://deno.land/x/deno2node@v1.10.0/src/deps.deno.ts";
Iterates over the elements in the provided array.
Parameters
structures: ReadonlyArray<Structures>
- Array of structures to iterate over.
callback: (child: Structures) => TStructure | void
- Callback to do on each element in the array. Returning a truthy value will return that value in the main function call.
Returns
TStructure | undefined
Iterates over the children of the provided array.
Parameters
structure: Structures
- Structure to iterate over.
callback: (child: Structures) => TStructure | void
- Callback to do on each child of the provided structure. Returning a truthy value will return that value in the main function call.
Returns
TStructure | undefined