sample abstract method

Iterable<String> sample(
  1. Iterable<String> items
)

Samples a collection of items

  • items: The list of items to sample

Returns a new collection sampled from the original

Implementation

Iterable<String> sample(Iterable<String> items);