Skip to content

Commit 2d93151

Browse files
committed
Added batch constructor and search functions for Python+R. Fixed bug in python data_at function. Moved API documentation to seperate readmes
1 parent ba9e137 commit 2d93151

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/superintervals/intervalmap.pxd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,6 @@ cdef class IntervalMap:
100100
cpdef search_keys(self, int start, int end)
101101
cpdef search_items(self, int start, int end)
102102
cpdef coverage(self, int start, int end)
103+
cpdef count_batch(self, int[:] starts, int[:] ends)
104+
cpdef search_idxs_batch(self, int[:] starts, int[:] ends)
105+
cpdef search_values_batch(self, int[:] starts, int[:] ends)

0 commit comments

Comments
 (0)