You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DimensionalData.jl defines a Selector abstract type and selectors Between, Near, At, Where, and Contains.
AxisKeys.jl also defines Selector and Near and Inervals selectors (ping @mcabbott)
It would be useful to standardise these so we can all use the simplest words without clashes, and this is probably the place for that.
We could define Selector here, and make Between <: Selector. Near could also move here to avoid the (maybe less common) clashes between AxisKeys.jl and DimensionalData.jl, if @mcabbott is also interested in sharing these types.
Between in DD holds a 2-tuple of any types, while here it has two fields limited to Union{Int,Symbol}.