@@ -133,13 +133,6 @@ Also available as the macro `@assert expr`.
133
133
"""
134
134
assert
135
135
136
- """
137
- sech(x)
138
-
139
- Compute the hyperbolic secant of `x`
140
- """
141
- sech
142
-
143
136
"""
144
137
unsafe_copy!(dest::Ptr{T}, src::Ptr{T}, N)
145
138
@@ -1271,13 +1264,6 @@ Compile the given function `f` for the argument tuple (of types) `args`, but do
1271
1264
"""
1272
1265
precompile
1273
1266
1274
- """
1275
- cot(x)
1276
-
1277
- Compute the cotangent of `x`, where `x` is in radians.
1278
- """
1279
- cot
1280
-
1281
1267
"""
1282
1268
get(collection, key, default)
1283
1269
@@ -1322,13 +1308,6 @@ Forces synchronization between the in-memory version of a memory-mapped `Array`
1322
1308
"""
1323
1309
Mmap. sync!
1324
1310
1325
- """
1326
- csc(x)
1327
-
1328
- Compute the cosecant of `x`, where `x` is in radians.
1329
- """
1330
- csc
1331
-
1332
1311
"""
1333
1312
hash(x[, h::UInt])
1334
1313
@@ -1396,13 +1375,6 @@ or a composite object and field name (as a symbol) or index.
1396
1375
"""
1397
1376
isdefined
1398
1377
1399
- """
1400
- cotd(x)
1401
-
1402
- Compute the cotangent of `x`, where `x` is in degrees.
1403
- """
1404
- cotd
1405
-
1406
1378
"""
1407
1379
wait([x])
1408
1380
@@ -1681,13 +1653,6 @@ used only with extreme caution, as it can cause memory use to grow without bound
1681
1653
"""
1682
1654
gc_enable
1683
1655
1684
- """
1685
- secd(x)
1686
-
1687
- Compute the secant of `x`, where `x` is in degrees.
1688
- """
1689
- secd
1690
-
1691
1656
"""
1692
1657
OverflowError()
1693
1658
@@ -1754,20 +1719,6 @@ unpredictable.
1754
1719
"""
1755
1720
finalizer
1756
1721
1757
- """
1758
- csch(x)
1759
-
1760
- Compute the hyperbolic cosecant of `x`.
1761
- """
1762
- csch
1763
-
1764
- """
1765
- sec(x)
1766
-
1767
- Compute the secant of `x`, where `x` is in radians.
1768
- """
1769
- sec
1770
-
1771
1722
"""
1772
1723
TypeError(func::Symbol, context::AbstractString, expected::Type, got)
1773
1724
@@ -1986,13 +1937,6 @@ retrieved by accessing `m.match` and the captured sequences can be retrieved by
1986
1937
"""
1987
1938
match
1988
1939
1989
- """
1990
- coth(x)
1991
-
1992
- Compute the hyperbolic cotangent of `x`.
1993
- """
1994
- coth
1995
-
1996
1940
"""
1997
1941
start(iter) -> state
1998
1942
@@ -2308,43 +2252,6 @@ Unicode string.)
2308
2252
"""
2309
2253
reverseind
2310
2254
2311
- """
2312
- signbit(x)
2313
-
2314
- Returns `true` if the value of the sign of `x` is negative, otherwise `false`.
2315
-
2316
- # Examples
2317
- ```jldoctest
2318
- julia> signbit(-4)
2319
- true
2320
-
2321
- julia> signbit(5)
2322
- false
2323
-
2324
- julia> signbit(5.5)
2325
- false
2326
-
2327
- julia> signbit(-4.1)
2328
- true
2329
- ```
2330
- """
2331
- signbit
2332
-
2333
- """
2334
- cscd(x)
2335
-
2336
- Compute the cosecant of `x`, where `x` is in degrees.
2337
- """
2338
- cscd
2339
-
2340
- """
2341
- tryparse(type, str, [base])
2342
-
2343
- Like [`parse`](@ref), but returns a [`Nullable`](@ref) of the requested type. The result will be null if the
2344
- string does not contain a valid number.
2345
- """
2346
- tryparse
2347
-
2348
2255
"""
2349
2256
exit([code])
2350
2257
0 commit comments