Split an interable into batches of size `n`. If `n` does not evenly divide `iterable`, the last slice will be smaller. https://stackoverflow.com/questions/8290397/how-to-split-an-iterable-in-constant-size-chunks Usage: ``` for i in batch(range(0,10), 3): pr
(iterable, n=1)
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected