factor/library/test/benchmark/strings.factor

23 lines
519 B
Factor
Raw Normal View History

2004-10-27 21:21:31 -04:00
USE: strings
USE: kernel
2004-10-27 21:21:31 -04:00
USE: math
USE: test
USE: lists
2004-10-27 21:21:31 -04:00
! http://inferno.bell-labs.com/cm/cs/who/bwk/interps/pap.html
: string-step ( n str -- )
2dup str-length > [
dup [ "123" , , "456" , , "789" , ] make-string
2004-10-27 21:21:31 -04:00
dup dup str-length 2 /i 0 transp substring
swap dup str-length 2 /i succ 1 transp substring cat2
string-step
] [
2drop
] ifte ;
: string-benchmark ( n -- )
"abcdef" 10 [ 2dup string-step ] times 2drop ;
[ ] [ 1000000 string-benchmark ] unit-test