We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
isapprox
1 parent 065f388 commit 57b7379Copy full SHA for 57b7379
base/floatfuncs.jl
@@ -295,6 +295,9 @@ end
295
Create a function that compares its argument to `x` using `≈`, i.e. a function equivalent to `y -> y ≈ x`.
296
297
The keyword arguments supported here are the same as those in the 2-argument `isapprox`.
298
+
299
+!!! compat "Julia 1.5"
300
+ This method requires Julia 1.5 or later.
301
"""
302
isapprox(y; kwargs...) = x -> isapprox(x, y; kwargs...)
303
0 commit comments