From 2038b264c8b71f786a6467919c19c3d63c4b3663 Mon Sep 17 00:00:00 2001 From: Sathvik Bhagavan Date: Mon, 6 May 2024 07:56:23 +0000 Subject: [PATCH] refactor: remove subtyping of interpolation with AbstractVector --- src/DataInterpolations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataInterpolations.jl b/src/DataInterpolations.jl index 6453558d..82eabddc 100644 --- a/src/DataInterpolations.jl +++ b/src/DataInterpolations.jl @@ -2,7 +2,7 @@ module DataInterpolations ### Interface Functionality -abstract type AbstractInterpolation{FT, T} <: AbstractVector{T} end +abstract type AbstractInterpolation{FT, T} end Base.size(A::AbstractInterpolation) = size(A.u) Base.size(A::AbstractInterpolation{true}) = length(A.u) .+ size(A.t)