projects
/
pyutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bd8f1d
)
More docs.
author
Scott Gasch
<scott@gasch.org>
Thu, 15 Dec 2022 23:44:46 +0000
(15:44 -0800)
committer
Scott Gasch
<scott@gasch.org>
Thu, 15 Dec 2022 23:44:46 +0000
(15:44 -0800)
src/pyutils/collectionz/interval_tree.py
patch
|
blob
|
history
diff --git
a/src/pyutils/collectionz/interval_tree.py
b/src/pyutils/collectionz/interval_tree.py
index d4b33cbe62dea02385b1381924429ff2ebb613f7..aee838585b098887e7b3202ca48478453978311e 100644
(file)
--- a/
src/pyutils/collectionz/interval_tree.py
+++ b/
src/pyutils/collectionz/interval_tree.py
@@
-22,6
+22,18
@@
class NumericRange(object):
helper methods on it."""
def __init__(self, low: Numeric, high: Numeric):
+ """Creates a NumericRange.
+
+ Args:
+ low: the lowest point in the range (inclusive).
+ high: the highest point in the range (inclusive).
+
+ .. warning::
+
+ If low > high this code swaps the parameters and keeps the range
+ rather than raising.
+
+ """
if low > high:
temp: Numeric = low
low = high