73
73
74
74
Subtype operator, equivalent to `issubtype(T1,T2)`.
75
75
"""
76
- Base .( :(< :) )
76
+ Base.:(< :)
77
77
78
78
"""
79
79
schedule(t::Task, [val]; error=false)
@@ -230,7 +230,7 @@ Evaluates the arguments to the function call, determines their types, and calls
230
230
231
231
Divide two integers or rational numbers, giving a `Rational` result.
232
232
"""
233
- Base .( :(// ) )
233
+ Base.:(// )
234
234
235
235
"""
236
236
At_mul_B(A, B)
@@ -289,7 +289,7 @@ sortrows
289
289
290
290
Element-wise right division operator.
291
291
"""
292
- Base .( :(./ ) )
292
+ Base.:(./ )
293
293
294
294
"""
295
295
IPv6(host::Integer) -> IPv6
@@ -572,7 +572,7 @@ ind2sub(a, index)
572
572
573
573
Element-wise multiplication operator.
574
574
"""
575
- Base .( :(.* ) )
575
+ Base.:(.* )
576
576
577
577
"""
578
578
ror!(dest::BitArray{1}, src::BitArray{1}, i::Integer) -> BitArray{1}
@@ -783,7 +783,7 @@ julia> [1:5;] |> x->x.^2 |> sum |> inv
783
783
0.01818181818181818
784
784
```
785
785
"""
786
- Base .( :(|> ) )
786
+ Base.:(|> )
787
787
788
788
"""
789
789
assert(cond)
922
922
923
923
Element-wise exponentiation operator.
924
924
"""
925
- Base .( :(.^ ) )
925
+ Base.:(.^ )
926
926
927
927
"""
928
928
isspace(c::Union{Char,AbstractString}) -> Bool
@@ -1213,7 +1213,7 @@ sizeof(::AbstractString)
1213
1213
1214
1214
See the [`is`](:func:`is`) operator.
1215
1215
"""
1216
- Base .( :(=== ) )
1216
+ Base.:(=== )
1217
1217
1218
1218
"""
1219
1219
ReadOnlyMemoryError()
@@ -1702,7 +1702,7 @@ searchsorted
1702
1702
Right division operator: multiplication of `x` by the inverse of `y` on the right. Gives
1703
1703
floating-point results for integer arguments.
1704
1704
"""
1705
- Base .( :(/ ) )
1705
+ Base.:(/ )
1706
1706
1707
1707
"""
1708
1708
connect([host],port) -> TCPSocket
@@ -2601,7 +2601,7 @@ reduce(op, itr)
2601
2601
2602
2602
Element-wise greater-than-or-equals comparison operator.
2603
2603
"""
2604
- Base .( :(.>= ) )
2604
+ Base.:(.>= )
2605
2605
2606
2606
"""
2607
2607
stdm(v, m)
@@ -2754,7 +2754,7 @@ eachindex
2754
2754
2755
2755
Element-wise less-than comparison operator.
2756
2756
"""
2757
- Base .( :(.< ) )
2757
+ Base.:(.< )
2758
2758
2759
2759
"""
2760
2760
UndefRefError()
@@ -3053,7 +3053,7 @@ rest
3053
3053
getfield(value, name::Symbol)
3054
3054
3055
3055
Extract a named field from a `value` of composite type. The syntax `a.b` calls
3056
- `getfield(a, :b)`, and the syntax `a.(b)` calls `getfield(a, b)` .
3056
+ `getfield(a, :b)`.
3057
3057
"""
3058
3058
getfield
3059
3059
@@ -4309,7 +4309,7 @@ rot180(A, k)
4309
4309
4310
4310
Element-wise less-than-or-equals comparison operator.
4311
4311
"""
4312
- Base .( :(.<= ) )
4312
+ Base.:(.<= )
4313
4313
4314
4314
"""
4315
4315
checkbounds(array, indexes...)
@@ -4709,7 +4709,7 @@ bkfact!
4709
4709
4710
4710
Exponentiation operator.
4711
4711
"""
4712
- Base .( :(^ ) )(x, y)
4712
+ Base.:(^ )(x, y)
4713
4713
4714
4714
"""
4715
4715
^(s, n)
@@ -4721,7 +4721,7 @@ julia> "Test "^3
4721
4721
"Test Test Test "
4722
4722
```
4723
4723
"""
4724
- Base .( :(^ ) )(s:: AbstractString , n:: Int )
4724
+ Base.:(^ )(s:: AbstractString , n:: Int )
4725
4725
4726
4726
"""
4727
4727
position(s)
@@ -5547,7 +5547,7 @@ istaskdone
5547
5547
5548
5548
Element-wise greater-than comparison operator.
5549
5549
"""
5550
- Base .( :(.> ) )
5550
+ Base.:(.> )
5551
5551
5552
5552
"""
5553
5553
search(string, chars, [start])
@@ -5866,7 +5866,7 @@ get
5866
5866
5867
5867
Element-wise not-equals comparison operator.
5868
5868
"""
5869
- Base .( :(.!= ) )
5869
+ Base.:(.!= )
5870
5870
5871
5871
"""
5872
5872
lufact!(A) -> LU
@@ -6428,7 +6428,7 @@ isdiag
6428
6428
6429
6429
Equivalent to `!is(x, y)`.
6430
6430
"""
6431
- Base .( :(!= = ) )
6431
+ Base.:(!= = )
6432
6432
6433
6433
"""
6434
6434
trailing_ones(x::Integer) -> Integer
@@ -6927,7 +6927,7 @@ Collections should generally implement `==` by calling `==` recursively on all c
6927
6927
New numeric types should implement this function for two arguments of the new type, and
6928
6928
handle comparison to other types via promotion rules where possible.
6929
6929
"""
6930
- Base .( :(== ) )
6930
+ Base.:(== )
6931
6931
6932
6932
"""
6933
6933
mapreducedim(f, op, A, dims[, initial])
@@ -7240,7 +7240,7 @@ diagm
7240
7240
7241
7241
Element-wise subtraction operator.
7242
7242
"""
7243
- Base .( :(.- ) )
7243
+ Base.:(.- )
7244
7244
7245
7245
"""
7246
7246
imag(z)
@@ -7274,7 +7274,7 @@ arguments of the new type. Because of the behavior of floating-point NaN values,
7274
7274
implements a partial order. Types with a canonical partial order should implement `<`, and
7275
7275
types with a canonical total order should implement `isless`.
7276
7276
"""
7277
- Base .( :(< ) )
7277
+ Base.:(< )
7278
7278
7279
7279
"""
7280
7280
EnvHash() -> EnvHash
@@ -7844,7 +7844,7 @@ rpad
7844
7844
setfield!(value, name::Symbol, x)
7845
7845
7846
7846
Assign `x` to a named field in `value` of composite type. The syntax `a.b = c` calls
7847
- `setfield!(a, :b, c)`, and the syntax `a.(b) = c` calls `setfield!(a, b, c)` .
7847
+ `setfield!(a, :b, c)`.
7848
7848
"""
7849
7849
setfield!
7850
7850
@@ -7880,7 +7880,7 @@ countlines
7880
7880
7881
7881
Matrix multiplication.
7882
7882
"""
7883
- Base .( :(* ) )(:: AbstractMatrix , :: AbstractMatrix )
7883
+ Base.:(* )(:: AbstractMatrix , :: AbstractMatrix )
7884
7884
7885
7885
"""
7886
7886
\\ (A, B)
@@ -7897,22 +7897,22 @@ When `A` is sparse, a similar polyalgorithm is used. For indefinite matrices, th
7897
7897
factorization does not use pivoting during the numerical factorization and therefore the
7898
7898
procedure can fail even for invertible matrices.
7899
7899
"""
7900
- Base .( :(\ ) )(A,B)
7900
+ Base.:(\ )(A,B)
7901
7901
7902
7902
"""
7903
7903
.\\ (x, y)
7904
7904
7905
7905
Element-wise left division operator.
7906
7906
"""
7907
- Base .( :(.\ ) )(x,y)
7907
+ Base.:(.\ )(x,y)
7908
7908
7909
7909
"""
7910
7910
\\ (x, y)
7911
7911
7912
7912
Left division operator: multiplication of `y` by the inverse of `x` on the left. Gives
7913
7913
floating-point results for integer arguments.
7914
7914
"""
7915
- Base .( :(\ ) )(x:: Number ,y:: Number )
7915
+ Base.:(\ )(x:: Number ,y:: Number )
7916
7916
7917
7917
7918
7918
"""
@@ -7922,7 +7922,7 @@ Base.(:(\))(x::Number,y::Number)
7922
7922
7923
7923
Multiplication operator. `x*y*z*...` calls this function with all arguments, i.e. `*(x, y, z, ...)`.
7924
7924
"""
7925
- Base .( :(* ) )(x, y... )
7925
+ Base.:(* )(x, y... )
7926
7926
7927
7927
"""
7928
7928
```
@@ -7936,7 +7936,7 @@ julia> "Hello " * "world"
7936
7936
"Hello world"
7937
7937
```
7938
7938
"""
7939
- Base .( :(* ) )(s:: AbstractString , t:: AbstractString )
7939
+ Base.:(* )(s:: AbstractString , t:: AbstractString )
7940
7940
7941
7941
"""
7942
7942
complement!(s)
@@ -8380,7 +8380,7 @@ to a variable, it returns the module in which the variable was bound. It calls o
8380
8380
8381
8381
Returns a tuple containing the dimensions of `A`. Optionally you can specify the
8382
8382
dimension(s) you want the length of, and get the length of that dimension, or a tuple of the
8383
- lengths of dimensions you asked for.:
8383
+ lengths of dimensions you asked for.
8384
8384
8385
8385
julia> A = rand(2,3,4);
8386
8386
@@ -8440,7 +8440,7 @@ airy
8440
8440
8441
8441
Boolean not.
8442
8442
"""
8443
- Base .( :(! ) )
8443
+ Base.:(! )
8444
8444
8445
8445
"""
8446
8446
length(A) -> Integer
@@ -8533,7 +8533,7 @@ NullException
8533
8533
8534
8534
Element-wise equality comparison operator.
8535
8535
"""
8536
- Base .( :(.== ) )
8536
+ Base.:(.== )
8537
8537
8538
8538
"""
8539
8539
cfunction(function::Function, ReturnType::Type, (ArgumentTypes...))
@@ -8593,7 +8593,7 @@ intersect
8593
8593
Not-equals comparison operator. Always gives the opposite answer as `==`. New types should
8594
8594
generally not implement this, and rely on the fallback definition `!=(x,y) = !(x==y)` instead.
8595
8595
"""
8596
- Base .( :(!= ) )
8596
+ Base.:(!= )
8597
8597
8598
8598
"""
8599
8599
@spawn
@@ -8758,7 +8758,7 @@ isprime(::BigInt, ?)
8758
8758
Greater-than comparison operator. Generally, new types should implement `<` instead of this
8759
8759
function, and rely on the fallback definition `>(x,y) = y<x`.
8760
8760
"""
8761
- Base .( :(> ) )
8761
+ Base.:(> )
8762
8762
8763
8763
"""
8764
8764
match(r::Regex, s::AbstractString[, idx::Integer[, addopts]])
@@ -8880,7 +8880,7 @@ isa
8880
8880
8881
8881
Less-than-or-equals comparison operator.
8882
8882
"""
8883
- Base .( :(<= ) )
8883
+ Base.:(<= )
8884
8884
8885
8885
"""
8886
8886
ProcessExitedException()
@@ -10010,7 +10010,7 @@ midpoints
10010
10010
10011
10011
Element-wise addition operator.
10012
10012
"""
10013
- Base .( :(.+ ) )
10013
+ Base.:(.+ )
10014
10014
10015
10015
"""
10016
10016
reverseind(v, i)
@@ -10463,7 +10463,7 @@ iswritable
10463
10463
10464
10464
Bitwise or.
10465
10465
"""
10466
- Base .( :(| ) )
10466
+ Base.:(| )
10467
10467
10468
10468
"""
10469
10469
yieldto(task, arg = nothing)
@@ -10656,7 +10656,7 @@ enumerate
10656
10656
10657
10657
Greater-than-or-equals comparison operator.
10658
10658
"""
10659
- Base .( :(>= ) )
10659
+ Base.:(>= )
10660
10660
10661
10661
"""
10662
10662
dawson(x)
@@ -10700,7 +10700,7 @@ colon(start, step, stop)
10700
10700
10701
10701
Bitwise exclusive or.
10702
10702
"""
10703
- Base .( :$ ) (x, y)
10703
+ Base.:$ (x, y)
10704
10704
10705
10705
"""
10706
10706
getsockname(sock::Union{TCPServer, TCPSocket}) -> (IPAddr,UInt16)
0 commit comments