deep icon indicating copy to clipboard operation
deep copied to clipboard

Fast indexing

Open Yozzaxia1311 opened this issue 3 years ago • 0 comments

deep.execute will sort queues by keys instead of iterating from min to max indexes. This is no longer a performance issue:

deep.queue(-10000, print, "Large negative!")
deep.queue(1, print, "Normal")
deep.queue(10000, print, "Large positive!")
deep.queue(-20.32471, print, "Wild card!")
deep.execute()

Yozzaxia1311 avatar Aug 04 '21 22:08 Yozzaxia1311