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
go_to_nth_child might be quicker to start from the end (like go_to_last_child) - actually a Cursor optimisation.
the combinators are strictly FIFO during the search, so can be allocated and deallocated using a single block of memory, avoiding all allocation.
binding names can be shared, rather than allocated.
before searching over a tree, a hash map can be built keyed by the FIRST SET of the kinds of each query, avoiding the cost of iterating over the queries for each node.
Please check the TODO(#871) comments added in #873.
The text was updated successfully, but these errors were encountered:
Examples:
go_to_nth_child
might be quicker to start from the end (likego_to_last_child
) - actually aCursor
optimisation.Please check the
TODO(#871)
comments added in #873.The text was updated successfully, but these errors were encountered: