Example #1
0
 /// <summary>
 ///   <para>Finds the first elements for which a predicate is true.
 ///
 /// </para>
 /// </summary>
 public option <T> Find(Function <T, bool> pred)
 {
     return(NList.Find <T>(this, pred));
 }