MCPcopy Create free account
hub / github.com/grantjenks/python-sortedcontainers / slow_find_ge

Function slow_find_ge

tests/sortedcollection.py:268–273  ·  view source on GitHub ↗

First item with a key-value greater-than or equal to k.

(seq, k)

Source from the content-addressed store, hash-verified

266 return -1
267
268 def slow_find_ge(seq, k):
269 'First item with a key-value greater-than or equal to k.'
270 for item in seq:
271 if item >= k:
272 return item
273 return -1
274
275 def slow_find_gt(seq, k):
276 'First item with a key-value greater-than or equal to k.'

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected