deep
deep copied to clipboard
Queue and execute actions in sequence (add Z axis to 2D graphics frameworks)
Results
1
deep issues
Sort by
recently updated
recently updated
newest added
`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,...