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
For most data structures, in and getindex tend to agree, although this invariant does not hold for selections, where in checks for a full path down the trie, whereas getindex allows specifying a prefix.
using Gen: select
julia > x =select(:y=>1);
julia >:yin x
false
julia > x[:y]
DynamicSelection(Dict{Any, Selection}(1=>AllSelection()))
The text was updated successfully, but these errors were encountered:
For most data structures,
in
andgetindex
tend to agree, although this invariant does not hold for selections, wherein
checks for a full path down the trie, whereasgetindex
allows specifying a prefix.The text was updated successfully, but these errors were encountered: