API: MaybeVector
NMRAnalysis.MaybeVectorModule.MaybeVector — Type
MaybeVector{T} <: AbstractVector{T}Abstract type representing a vector that may contain either a single element or multiple elements. All indices return the same value for SingleElementVector.
NMRAnalysis.MaybeVectorModule.SingleElementVector — Type
SingleElementVector{T} <: MaybeVector{T}Vector type that returns its single element for any valid index.
NMRAnalysis.MaybeVectorModule.StandardVector — Type
StandardVector{T} <: MaybeVector{T}Standard vector implementation wrapping Vector{T}.