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
Because all operations(focusing) is performed with indexes.
BTW
My case is search to find node by part of it(since Node must have id, find_tab is almost useless), so I was forced to re-create that iterators in my code.
We could actually merge find_tab and iter_all_nodes with "index api"
The text was updated successfully, but these errors were encountered:
Current api is like
Iterator<Item = (SurfaceIndex, &Node<Tab>)>
whith is not very practical. better to return
Iterator<Item = (SurfaceIndex, NodeIndex)>
and
Iterator<Item = (SurfaceIndex, NodeIndex, TabIndex)>
Because all operations(focusing) is performed with indexes.
BTW
My case is search to find node by part of it(since Node must have id, find_tab is almost useless), so I was forced to re-create that iterators in my code.
We could actually merge
find_tab
anditer_all_nodes
with "index api"The text was updated successfully, but these errors were encountered: