/// <summary>
 /// Run Map on the wrapped collection with the indicated mapper.
 /// The result will <b>not</b> be read-only.
 /// </summary>
 /// <param name="m"></param>
 /// <param name="c">The comparer to use in the result</param>
 /// <returns></returns>
 public IIndexedSorted <V> Map <V>(Func <T, V> m, System.Collections.Generic.IComparer <V> c)
 {
     return(indexedsorted.Map(m, c));
 }
Exemple #2
0
 public IIndexedSorted <V> Map <V> (Fun <T, V> m)
 {
     return(indexedsorted.Map(m));
 }