We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
다만, 이 List는 intrusive linked list가 아닙니다. 지금의 rv6에서는 이런 List면 충분하지만, 추후 Node가 여러 List안에 insert될 수 있는 safe한 Node/List를 만들면 좋을 것 같습니다. 이때, const generic을 이용해서 List가 Node의 몇번째 ListEntry를 사용하는지를 표현하면 좋을 것 같습니다. (ex: 59cfe85) 이러한 list의 ownership을 어떻게 해야할지를 잘 고민해봐야 합니다.
다만, 이 List는 intrusive linked list가 아닙니다. 지금의 rv6에서는 이런 List면 충분하지만, 추후 Node가 여러 List안에 insert될 수 있는 safe한 Node/List를 만들면 좋을 것 같습니다.
List
Node
ListEntry
Originally posted by @travis1829 in #443 (comment)
The text was updated successfully, but these errors were encountered:
조금 부연설명을 드리자면,
이를 위해, const generic을 사용하면 도움이 될 것 같습니다. 이러면, ListEntry가 여러개있는 Node의 경우, List가 이 Node의 몇번째 ListEntry를 사용하도록 하면 되는지를 지정해줄 수 있습니다. (구현 예: 59cfe85)
다만, ownership을 어떻게 하면 좋을지에 대해서는 좀 더 고민을 해보아야 합니다. 예를 들면,
Node1
Node2
등 다양한 방법이 있을 것 같습니다.
Sorry, something went wrong.
No branches or pull requests
Originally posted by @travis1829 in #443 (comment)
The text was updated successfully, but these errors were encountered: