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
help?> IteratorSize
search: IteratorSize Iterators IteratorEltype iterate
Couldn't find IteratorSize
Perhaps you meant IteratorSize or Iterators
No documentation found.
Binding IteratorSize does not exist.
The suggestion should probably read "Perhaps you meant Base.IteratorSize or Iterators", as otherwise what's going wrong is a bit unclear. Something similar may also be needed for the terms displayed in the first line after search:.
This is on
julia>versioninfo()
Julia Version 1.11.0-DEV.1030
Commit b5abac441db (2023-12-0605:12 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU:8×11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
WORD_SIZE:64
LLVM: libLLVM-15.0.7 (ORCJIT, tigerlake)
Threads:1 on 8 virtual cores
Environment:
LD_LIBRARY_PATH = :/usr/lib/x86_64-linux-gnu/gtk-3.0/modules
JULIA_EDITOR = subl
The text was updated successfully, but these errors were encountered:
This seems to be because names now includes public bindings, not only exported bindings. I think this could be fixed by amending the accessible function in the REPL stdlib to add isexported to the filtering and restore the original behavior.
Fixes#52472, which was caused by `names` being changed to also return
public, unexported symbols in #50105. Note that this restores previous
behavior. A case could be made to instead add the public, unexported
bindings as suggestions with the appropriate qualification.
Not entirely sure how to test this so I'd welcome any suggestions.
---------
Co-authored-by: Jameson Nash <vtjnash@gmail.com>
The suggestion should probably read "Perhaps you meant
Base.IteratorSize
orIterators
", as otherwise what's going wrong is a bit unclear. Something similar may also be needed for the terms displayed in the first line aftersearch:
.This is on
The text was updated successfully, but these errors were encountered: