take method

Iterable<S> take(
  1. int count
)

Take count elements from cache. Returns Iterable of cache values

Implementation

Iterable<S> take(int count) => values.take(count);