Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

String parameter SelectSteps added to BP5 so that a reader only sees … #3042

Merged
merged 2 commits into from
Feb 5, 2022

Commits on Feb 5, 2022

  1. String parameter SelectSteps added to BP5 so that a reader only sees …

    …the selected steps. The selection can contain multiple range selections in the form of start:end:step form, as a space-separated list. Unlimited selections can be defined using 'n' or 'N' for the end part of the range. Steps start from 0. For example: "0:n:3 2:n:3 1:n:3" is a valid selection spec for getting all steps. Memory requirement is std::vector<bool>(M) where M is the largest number in the spec (unlimited spec uses 16 bytes per unlimited range). There is NO protection from users specifying 64bit large numbers and run out of memory. Note that a reader always sees the available steps as step 0, 1, 2 and so on. This feature picks which steps in a file/stream will become visible.
    pnorbert committed Feb 5, 2022
    Configuration menu
    Copy the full SHA
    aa0b54c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    91f3b00 View commit details
    Browse the repository at this point in the history