Picks a value randomly from a fixed list of values.
tc.draw(sampled(['a', 'b', 'c']))
Generator<T> sampled<T>(List<T> values) => SampledGenerator(values);