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
As part of the unification of search and find functions (#10593), we should deprecate findin(a, b) in favor of the more explicit find(occursin(b), a), which is equivalent to find(x -> x in b, a). occursin is already implemented in #24673.
As part of the unification of search and find functions (#10593), we should deprecate
findin(a, b)in favor of the more explicitfind(occursin(b), a), which is equivalent tofind(x -> x in b, a).occursinis already implemented in #24673.