Skip to content

Negative stream slicing

Lucas Felix requested to merge negative-stream-slicing into master

Previously, negative indices in blissdata streams were relative to the last known index, e.g. stream[-1] was a moving target until the actual termination of the stream.

Now, positive and negative indices are both absolute, thus stream[-1] always mean the final last value, which may not be available at the moment. Using a negative index on a running stream raises an exception instead.

Merge request reports