splitAt method

$<Iterable<T>, Iterable<T>> splitAt(
  1. int n
)

Implementation

$<Iterable<T>, Iterable<T>> splitAt(int n) => $(take(n), skip(n));