array

@API(status = API.Status.EXPERIMENTAL, since = "1.6.0")
inline fun <T, A> Arbitrary<T>.array(): ArrayArbitrary<T, A>

Create a new arbitrary of type Array using the existing arbitrary for generating the elements of the array.

Return

a new arbitrary instance

Parameters