-
Notifications
You must be signed in to change notification settings - Fork 158
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
Create delete function in manager to free / destroy sequence #36
Comments
Sorry if this is a silly question but doesn't |
@aliPMPAINT that is partially correct, so the |
Yeah I see. Could you also clarify another thing? |
So that would fall under the second category mentioned - the ones that would be "garbage collected", as these are anonymously created. Currently there's no reasonable way to remove them, so there could be various ways in which this could be dealt with. Initially the easiest thing is to just provide a way to remove named sequences, and provide a function to just clear all anonymous (and optionally also named) sequences. Later on, there could be a function that returns all the anonymous sequence names, so the user can go through them in any order as required (although I haven't seen so far the need for this). |
@axsaucedo Oh I see, thanks.
I don't have much experience with C++ yet, but I'll try implementing these feature. |
I've updated the issue with the discussion on #113 |
Currently there is only way to create a new sequence but there is no way to destroy the sequence inside the manager
See #113 for the discussion providing further context on the exploration related to this issue. For compleeteness, the conversation is added below:
The text was updated successfully, but these errors were encountered: