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

How to iterate over NCollection_List? #197

Open
kerimcharfi opened this issue Jan 2, 2023 · 0 comments
Open

How to iterate over NCollection_List? #197

kerimcharfi opened this issue Jan 2, 2023 · 0 comments

Comments

@kerimcharfi
Copy link

kerimcharfi commented Jan 2, 2023

I can't use the iterator from NCollection_List.begin(), because of UnboundTypeError

I made this somewhat hacky workaround:

function MoveListToJs(list: TopTools_ListOfShape){
    let res = []
    while(list.Size() > 0){
        res.push(list.First_1())
        list.RemoveFirst()
    }
    list.delete()
    return res
}

Is there a better solution?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant