|
| Numeric.Search.Bounded | | Portability | portable | | Stability | experimental | | Maintainer | ross@soi.city.ac.uk |
|
|
|
| Description |
| Searching unbounded intervals within bounded integral types for the
boundary of an upward-closed set, using a combination of exponential
and binary search.
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
O(log(abs n)).
Search a bounded integral type.
If p is an upward-closed predicate, search p returns
Just n if and only if n is the least such satisfying p.
|
|
|
O(log(abs n)).
Search the part of a bounded integral type from a given point.
If p is an upward-closed predicate, searchFrom p l returns
Just n if and only if n is the least n >= l satisfying p.
|
|
|
O(log(abs n)).
Search the part of a bounded integral type up to a given point.
If p is an upward-closed predicate, searchTo p h returns
Just n if and only if n is the least n <= h satisfying p.
|
|
| Produced by Haddock version 2.1.0 |