-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: for llvmcall #10760
doc: for llvmcall #10760
Conversation
(see also the documentation for each of these functions for further details). | ||
In most cases, this simply results in a call to ``convert(ArgumentType, ArgumentValue)``. | ||
|
||
See ``test/llvmcall.jl`` for usage examples. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does
``test/llvmcall.jl
https://github.com/JuliaLang/julia/blob/master/test/llvmcall.jl_
work in this context?
So the changes for #11604 would be:
Also the second argument should be a of form |
Bump, it would seem useful to get this in. |
Rebased. |
Needs to go in helpdb now I think? |
I believe I have sacrificed the proper number of rare newts to satisfy the docsys god here. Also included other minor changes from running genstdlib. There was an error about a missing shell script on travis, but I restarted and it seems to have proceeded this time. |
unique(f, itr) | ||
|
||
Returns an array containing one value from ``itr`` for each unique value produced by ``f`` applied to elements of ``itr``\ . | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mind fixing this to become a proper function entry?
Ref #13622 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried, but I've hit my non-deterministic error rate-limit for the day. The system refuses to recognize the function signatures. (yes, I rebuilt Julia, matched the signatures in helpdb and collections.rst, rebuilt julia again, ...).
Also, every 3rd or 4th run of genstdlib I get:
ERROR: LoadError: UnicodeError: invalid character index
[inlined code] from ./int.jl:187
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(note that there are several different signatures, and the one in set.jl
that takes an unspecified iterable is different from unique(::AbstractArray, dim::Int)
definition in multi.jl
. I tried a variety of different combinations, including splitting the doc strings up)
To get this started anyway.