-
Notifications
You must be signed in to change notification settings - Fork 35
Overload_CodeJam_Algorithms_UpperBound
Andrew Koryavchenko edited this page Jul 4, 2017
·
5 revisions
Name | Description | |
---|---|---|
UpperBound(IList(DateTime), DateTime) | Returns the minimum index i in the range [0, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(DateTimeOffset), DateTimeOffset) | Returns the minimum index i in the range [0, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(Double), Double) | Returns the minimum index i in the range [0, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(Single), Single) | Returns the minimum index i in the range [0, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(TimeSpan), TimeSpan) | Returns the minimum index i in the range [0, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(TElement, TValue)(IList(TElement), TValue) | Returns the minimum index i in the range [0, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(DateTime), DateTime, Int32) | Returns the minimum index i in the range [startIndex, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(DateTimeOffset), DateTimeOffset, Int32) | Returns the minimum index i in the range [startIndex, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(Double), Double, Int32) | Returns the minimum index i in the range [startIndex, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(Single), Single, Int32) | Returns the minimum index i in the range [startIndex, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(TimeSpan), TimeSpan, Int32) | Returns the minimum index i in the range [startIndex, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(TElement, TValue)(IList(TElement), TValue, Func(TElement, TValue, Int32)) | Returns the minimum index i in the range [0, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(TElement, TValue)(IList(TElement), TValue, Int32) | Returns the minimum index i in the range [startIndex, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(IList(DateTime), DateTime, Int32, Int32) | Returns the minimum index i in the range [startIndex, endIndex - 1] such that list[i] > value or endIndex if no such i exists | |
UpperBound(IList(DateTimeOffset), DateTimeOffset, Int32, Int32) | Returns the minimum index i in the range [startIndex, endIndex - 1] such that list[i] > value or endIndex if no such i exists | |
UpperBound(IList(Double), Double, Int32, Int32) | Returns the minimum index i in the range [startIndex, endIndex - 1] such that list[i] > value or endIndex if no such i exists | |
UpperBound(IList(Single), Single, Int32, Int32) | Returns the minimum index i in the range [startIndex, endIndex - 1] such that list[i] > value or endIndex if no such i exists | |
UpperBound(IList(TimeSpan), TimeSpan, Int32, Int32) | Returns the minimum index i in the range [startIndex, endIndex - 1] such that list[i] > value or endIndex if no such i exists | |
UpperBound(TElement, TValue)(IList(TElement), TValue, Int32, Func(TElement, TValue, Int32)) | Returns the minimum index i in the range [startIndex, list.Count - 1] such that list[i] > value or list.Count if no such i exists | |
UpperBound(TElement, TValue)(IList(TElement), TValue, Int32, Int32) | Returns the minimum index i in the range [startIndex, endIndex - 1] such that list[i] > value or endIndex if no such i exists | |
UpperBound(TElement, TValue)(IList(TElement), TValue, Int32, Int32, Func(TElement, TValue, Int32)) | Returns the minimum index i in the range [startIndex, endIndex - 1] such that list[i] > value or endIndex if no such i exists |