fun <T> Gen.Companion.from(values: List<T>): Gen<T>Adapts a list into a generator, where random values will be picked. May not choose every item in the list.
fun <T> Gen.Companion.from(values: Array<T>): Gen<T>Return
a new Gen created from the given values (see from List for more details)