add series_new.jl

This commit is contained in:
Thomas Breloff 2016-05-12 10:28:04 -04:00
parent 5005d32afd
commit 4d3ebf31d4

10
src/series_new.jl Normal file
View File

@ -0,0 +1,10 @@
# we are going to build recipes to do the processing and splitting of the args
# instead of process_inputs:
@recipe function f{X<:Number,Y<:Number}(x::AVec{X}, y::AVec{Y})
x --> x
y --> y
()
end