Re: [ANN] Timeline - a library for time-varying data values

2013-10-22 Thread Mikera
Just released Timeline 0.3.0 to clojars: https://clojars.org/net.mikera/timeline Some new (still experimental) features: - timelines are now Counted for you can do (count timeline) in the normal way - timelines can be sliced with arbitrary start and end times (exploiting the efficiency of

Re: [ANN] Timeline - a library for time-varying data values

2013-10-15 Thread Michael Klishin
2013/10/15 Mikera mike.r.anderson...@gmail.com Repository is here: https://github.com/mikera/timeline Have fun! It would be a bit easier to have fun if there were dependency/installation instructions provided in README. -- MK http://github.com/michaelklishin

Re: [ANN] Timeline - a library for time-varying data values

2013-10-15 Thread Mikera
Easily done :-) - README updated, the early releases are all on Clojars https://clojars.org/net.mikera/timeline On Tuesday, 15 October 2013 21:03:16 UTC+8, Michael Klishin wrote: 2013/10/15 Mikera mike.r.an...@gmail.com javascript: Repository is here: https://github.com/mikera/timeline

Re: [ANN] Timeline - a library for time-varying data values

2013-10-15 Thread Jozef Wagner
Wouldn't sorted-set be better than RRB vector in your case? On Tue, Oct 15, 2013 at 2:15 PM, Mikera mike.r.anderson...@gmail.comwrote: Hi All, I just created a new, small, experimental library because I needed to represent a timeline of values as an immutable object. Target use cases: -

Re: [ANN] Timeline - a library for time-varying data values

2013-10-15 Thread Mikera
I assume you mean sorted maps? A timeline is pretty much an ordered time - event mapping The main reason for the RRB vectors is the efficient concatenation and slicing. So you can manipulate large chunks of timeline data. For example - this is helpful if you are handling long streams of sensor

Re: [ANN] Timeline - a library for time-varying data values

2013-10-15 Thread Tim Visher
On Tue, Oct 15, 2013 at 8:15 AM, Mikera mike.r.anderson...@gmail.com wrote: I just created a new, small, experimental library because I needed to represent a timeline of values as an immutable object. This sounds very cool. I've been thinking about doing something like this for awhile to

Re: [ANN] Timeline - a library for time-varying data values

2013-10-15 Thread Mikera
On Wednesday, 16 October 2013 01:03:56 UTC+8, Tim Visher wrote: On Tue, Oct 15, 2013 at 8:15 AM, Mikera mike.r.an...@gmail.comjavascript: wrote: I just created a new, small, experimental library because I needed to represent a timeline of values as an immutable object. This sounds