Skip to content
#

data-generator

Here are 141 public repositories matching this topic...

Bender250
Bender250 commented Aug 20, 2018

Idea of new generator (processing).

It has given bit-length l. It generates all l binary rotation of the input. Implement following "python pseudocode"...

next():
    while True:
        _data = _source.next()
        for _ in range(l):
            circular_rotation_left(_data, 1)
            yield _data

Improve this page

Add a description, image, and links to the data-generator topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the data-generator topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.