The [Tie] type creates an object that ties one series to another series such that they are treated as one continuous series. The result is queriable. Requires two parameters that are series.
tie(Series, Series)
Use the [tie] type. The following example ties two series together into one.
Code
with n in tie((:1, 2, 3, 4), (:0, 9, 8, 7))
select #n
Result
1, 2, 3, 4, 0, 9, 8, 7
Use the [tie] type by nesting it repeatedly. The following example ties many series together into one.
Code
with n in tie((:1, 2, 3, 4), tie((:0, 9, 8, 7), (:'a', 'b', 'c')))
select #n
Result
1, 2, 3, 4, 0, 9, 8, 7, a, b, c
Please note that periodically LassoSoft will go through the notes and may incorporate information from them into the documentation. Any submission here gives LassoSoft a non-exclusive license and will be made available in various formats to the Lasso community.
©LassoSoft Inc 2015 | Web Development by Treefrog Inc | Privacy | Legal terms and Shipping | Contact LassoSoft
Recent Comments