Re: [Chicken-users] [Chicken-hackers] CHICKEN in production

2014-10-05 Thread Alex Shinn
On Fri, Oct 3, 2014 at 6:19 AM, r wrote: > > Whole logic in Chicken with ffi to platform specific HAL C libraries, our > audio/video player library uses CPS control-flow to manage complex hardware > accelerators state so its also pretty schemish even if written in C. > > GUI based on the Immediat

Re: [Chicken-users] chunk-vector

2014-10-05 Thread Richard
On Sun, 5 Oct 2014 20:52:26 +0200 Peter Bex wrote: > On Sun, Oct 05, 2014 at 08:12:59PM +, Richard wrote: > > Hello all, > > > > I have created a egg called 'chunk-vector' which is a > > dyn-vector-like (http://wiki.call-cc.org/eggref/4/dyn-vector) > > library capable of storing other srfi-4

Re: [Chicken-users] chunk-vector

2014-10-05 Thread Peter Bex
On Sun, Oct 05, 2014 at 08:12:59PM +, Richard wrote: > Hello all, > > I have created a egg called 'chunk-vector' which is a dyn-vector-like > (http://wiki.call-cc.org/eggref/4/dyn-vector) library capable of > storing other srfi-4 vectors inside a dense array. Hi Richard, Thanks! > The store

[Chicken-users] chunk-vector

2014-10-05 Thread Richard
Hello all, I have created a egg called 'chunk-vector' which is a dyn-vector-like (http://wiki.call-cc.org/eggref/4/dyn-vector) library capable of storing other srfi-4 vectors inside a dense array. The stored vectors can be returned, changed and removed in O(1) time. This is, among other things,