From 4d3ebf31d47d360cac979a28d2c173df7a52e5ea Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Thu, 12 May 2016 10:28:04 -0400 Subject: [PATCH] add series_new.jl --- src/series_new.jl | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/series_new.jl diff --git a/src/series_new.jl b/src/series_new.jl new file mode 100644 index 00000000..2836e498 --- /dev/null +++ b/src/series_new.jl @@ -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