File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,6 @@ Length(::Size{S}) where {S} = _Length(S...)
129
129
@pure Base.:(== )(:: Size{S} , s:: Tuple{Vararg{Int}} ) where {S} = S === s
130
130
@pure Base.:(== )(s:: Tuple{Vararg{Int}} , :: Size{S} ) where {S} = s === S
131
131
132
- @pure Base.:(!= )(:: Size{S} , s:: Tuple{Vararg{Int}} ) where {S} = S != = s
133
- @pure Base.:(!= )(s:: Tuple{Vararg{Int}} , :: Size{S} ) where {S} = s != = S
134
-
135
132
@pure Base. prod (:: Size{S} ) where {S} = prod (S)
136
133
137
134
Base. LinearIndices (:: Size{S} ) where {S} = LinearIndices (S)
@@ -144,9 +141,6 @@ Base.LinearIndices(::Size{S}) where {S} = LinearIndices(S)
144
141
@pure Base.:(== )(:: Length{L} , l:: Int ) where {L} = L == l
145
142
@pure Base.:(== )(l:: Int , :: Length{L} ) where {L} = l == L
146
143
147
- @pure Base.:(!= )(:: Length{L} , l:: Int ) where {L} = L != l
148
- @pure Base.:(!= )(l:: Int , :: Length{L} ) where {L} = l != L
149
-
150
144
# unroll_tuple also works with `Length`
151
145
@propagate_inbounds unroll_tuple (f, :: Length{L} ) where {L} = unroll_tuple (f, Val{L})
152
146
You can’t perform that action at this time.
0 commit comments