You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
intrusive linked list는 특이하게도 list가 node를 own하지 않으므로, node가 언제 mutate/drop될지를 알 수 없습니다. 그러므로, intrusive linked list를 safe하게 쓰기 위해서는 dynamic check이 필요할 것으로 보이며, 특히, StaticRefCell이 도움이 될 것으로 보입니다.
dynamic check을 최소한으로만 사용하는 safe한 linked list를 구상해보았습니다. #443 (comment)