コード例 #1
0
ファイル: ListIterator.cs プロジェクト: thygrrr/iterator
 public static bool IsHeap <T>(
     this ListIterator <T> first,
     ListIterator <T> last,
     Func <T, T, bool> comp
     )
 {
     return(first.IsHeapUntil(last, comp).IsEqual(last));
 }