Replies: 1 comment
-
A bidirectional list requires bidirectional nodes. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The
push_back
andinsert
methods both require the use oflink_type::etl_previous
, so we can't use these methods to add forward_link type nodes to an intrusive list. Is there another way of doing this which doesn't require using only bidirectional_link types?Looking into this to save the extra 4 bytes required for the previous pointer saved by bidirectional links.
Beta Was this translation helpful? Give feedback.
All reactions