Re: [Factor-talk] A performance challenge

2015-01-25 Thread John Benediktsson
If you want to avoid those dynamic type checks and not use TYPED, another alternative is declare: { object array fixnum } declare On Jan 25, 2015, at 9:12 AM, Björn Lindqvist bjou...@gmail.com wrote: 2015-01-18 2:44 GMT+00:00 John Benediktsson mrj...@gmail.com: Also, minor comment,

Re: [Factor-talk] A performance challenge

2015-01-25 Thread Björn Lindqvist
2015-01-18 2:44 GMT+00:00 John Benediktsson mrj...@gmail.com: Also, minor comment, instead of: length [ 0 ] { } replicate-as ; You can just do: length 0 array Thanks! And instead of the array-nth stuff, you can just do some type declarations and the compiler should make it the