generatesEach
infix inline fun <Owner, Element, CollectionType : Collection<Element>> KProperty1<Owner, CollectionType>.generatesEach(noinline generator: Generator<Element>): CollectionGenerationSpec<Element, CollectionType>
Generates each element for this collection property by invoking generator.
infix inline fun <Owner, Key, Value, MapType : Map<Key, Value>> KProperty1<Owner, MapType>.generatesEach(noinline generator: Generator<Pair<Key, Value>>): MapEntrySpec<Key, Value, MapType>
Generates each entry for this map property by invoking generator.
infix fun <Root, Element, CollectionType : Collection<Element>> PropertyPath<Root, CollectionType>.generatesEach(generator: Generator<Element>): CollectionGenerationSpec<Element, CollectionType>
Generates each element for this nested collection property path by invoking generator.
infix fun <Root, Key, Value, MapType : Map<Key, Value>> PropertyPath<Root, MapType>.generatesEach(generator: Generator<Pair<Key, Value>>): MapEntrySpec<Key, Value, MapType>
Generates each entry for this nested map property path by invoking generator.