BatchSeq convenience alias

This commit is contained in:
Mike J Innes 2016-10-26 12:37:48 +01:00
parent 823792bc19
commit 82d69757c7
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
export seq, Seq
export seq, Seq, BatchSeq
immutable Seq{T,S} <: AbstractVector{T}
data::CatMat{T,S}
@ -19,3 +19,5 @@ Media.render{T<:Seq}(i::Juno.Inline, b::Type{T}) =
Juno.fade("[$(length(b))]")),
Juno.trim(collect(b)))
end
typealias BatchSeq{T<:Seq} Batch{T}