-
Notifications
You must be signed in to change notification settings - Fork 0
Node class
Keihō Sakapon edited this page Mar 2, 2022
·
9 revisions
- GetPrevious()
- GetNext()
- GetFirst()
- GetLast()
Binary Search:
- GetFirst(Func<T, bool> predicate)
- GetLast(Func<T, bool> predicate)
- GetFirst(T item, IComparer<T> comparer)
- GetLast(T item, IComparer<T> comparer)
By Index:
- GetAt(int index)
- GetIndex()
Binary Search:
- GetFirstIndex(Func<T, bool> predicate)
- GetLastIndex(Func<T, bool> predicate)
- Exists<T>(this Node<T> node)
- GetItemOrDefault<T>(this Node<T> node, T defaultItem)
- TryGetItem<T>(this Node<T> node, out T item)
- GetValueOrDefault<TKey, TValue>(this Node<KeyValuePair<TKey, TValue>> node, TValue defaultValue)
- TryGetValue<TKey, TValue>(this Node<KeyValuePair<TKey, TValue>> node, out TValue value)
About
Classes
Development