Skip to content

Commit b583e74

Browse files
more clean up
1 parent 01c5aab commit b583e74

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/ArrayInterfaceCore/src/ArrayInterfaceCore.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ can_setindex(::Type{<:AbstractDict}) = true
134134
can_setindex(::Type{<:Base.ImmutableDict}) = false
135135
can_setindex(@nospecialize T::Type{<:Tuple}) = false
136136
can_setindex(@nospecialize T::Type{<:NamedTuple}) = false
137-
can_setindex(::Type{<:Pairs{<:Any,<:Any,P}}) where {P} = can_setindex(P)
137+
can_setindex(::Type{<:Base.Pairs{<:Any,<:Any,P}}) where {P} = can_setindex(P)
138138

139139
"""
140140
aos_to_soa(x)

src/ArrayInterface.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ using ArrayInterfaceCore
44
import ArrayInterfaceCore: allowed_getindex, allowed_setindex!, aos_to_soa, buffer,
55
has_parent, parent_type, fast_matrix_colors, findstructralnz, has_sparsestruct,
66
issingular, is_lazy_conjugate, isstructured, matrix_colors, restructure, lu_instance,
7-
safevec, unsafe_reconstruct, zeromatrix, ColoringAlgorithm, merge_tuple_type
7+
safevec, unsafe_reconstruct, zeromatrix, ColoringAlgorithm, merge_tuple_type,
8+
fast_scalar_indexing, parameterless_type
89

910
# ArrayIndex subtypes and methods
1011
import ArrayInterfaceCore: ArrayIndex, MatrixIndex, VectorIndex, BidiagonalIndex, TridiagonalIndex

0 commit comments

Comments
 (0)