Sequence slicing
- Posted by "Daniel Kluss" <codepilot at netzero.net> Oct 21, 2003
- 896 views
I've made a program, and Ive noticed the slowest part of it being the slicing. Could you tell me if there is a better(faster) way to slice. All the values are unsigned chars so I could go the way of peeking and poking, but dont really want to. ex. a=very big sequence of unsigned chars a=a[1..length(a)-1500]--I'm called very very very often Thanks in advance for the help Daniel Kluss

