示例#1
0
 /// <summary>
 /// Skips 'amount' values and returns a new tree without the
 /// skipped values.
 /// </summary>
 /// <param name="amount">Amount to skip</param>
 /// <returns>Enumerable of map items</returns>
 public static IEnumerable <IMapItem <K, V> > skip <K, V>(Map <K, V> map, int amount) =>
 map.Skip(amount);