Skip to content

Commit 758baee

Browse files
committed
define !=(x) for older Julia
1 parent 5d005f8 commit 758baee

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/containers.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# generation of some containers filled with random values
22

33

4+
if VERSION < v"1.2.0-DEV.257"
5+
Base.:(!=)(x) = Base.Fix2(!=, x)
6+
end
7+
48
function make_argument(param)
59
if param isa Symbol
610
param

0 commit comments

Comments
 (0)