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
ccall((symbol, library) or function_pointer, ReturnType,
223
-
(ArgumentType1, ...),
224
-
ArgumentValue1, ...)
234
+
ccall((symbol, library) or function_pointer, ReturnType, (ArgumentType1, ...), ArgumentValue1, ...)
225
235
226
236
Call function in C-exported shared library, specified by
227
237
`(function name, library)` tuple, where each component is a string
@@ -297,6 +307,7 @@ keywords[:immutable] = doc"""
297
307
# :@time
298
308
299
309
doc"""
310
+
@r_str -> Regex
300
311
Construct a regex, such as `r"^[a-z]*$"`. The regex also accepts
301
312
one or more flags, listed after the ending quote, to change its
302
313
behaviour:
@@ -327,7 +338,7 @@ For example, this regex has all three flags enabled:
327
338
if Base.USE_GPL_LIBS
328
339
329
340
@docdoc"""
330
-
fft(A[, dims])
341
+
fft(A[, dims])
331
342
332
343
Performs a multidimensional FFT of the array `A`. The optional
333
344
`dims` argument specifies an iterable subset of dimensions (e.g.
@@ -355,7 +366,7 @@ processors.
355
366
end# USE_GPL_LIBS
356
367
357
368
"""
358
-
include("file.jl")
369
+
include(path::AbstractString)
359
370
360
371
Evaluate the contents of a source file in the current context.
361
372
During including, a task-local include path is set to the directory
@@ -366,7 +377,7 @@ function is typically used to load source interactively, or to
366
377
combine files in packages that are broken into multiple source
367
378
files.
368
379
"""
369
-
include_from_node1
380
+
include_from_node1(::AbstractString)
370
381
371
382
"""
372
383
0 (zero; BrE: `/ˈzɪərəʊ/` or AmE: `/ˈziːroʊ/`) is both a number and the numerical digit used to represent that number in numerals. It fulfills a central role in mathematics as the additive identity of the integers, real numbers, and many other algebraic structures. As a digit, 0 is used as a placeholder in place value systems. Names for the number 0 in English include zero, nought or (US) naught (`/ˈnɔːt/`), nil, or — in contexts where at least one adjacent digit distinguishes it from the letter "O" — oh or o (`/ˈoʊ/`). Informal or slang terms for zero include zilch and zip. Ought and aught (/ˈɔːt/), as well as cipher, have also been used historically.
0 commit comments