factor/library/test/benchmark/strings.factor

24 lines
555 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-12-17 19:27:42 -05:00
USE: compiler
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-12-10 21:39:27 -05:00
dup dup str-length 2 /i 0 swap rot substring
swap dup str-length 2 /i succ 1 swap rot substring cat2
2004-10-27 21:21:31 -04:00
string-step
] [
2drop
2004-12-17 19:27:42 -05:00
] ifte ; compiled
2004-10-27 21:21:31 -04:00
: string-benchmark ( n -- )
2004-12-17 19:27:42 -05:00
"abcdef" 10 [ 2dup string-step ] times 2drop ; compiled
2004-10-27 21:21:31 -04:00
[ ] [ 1000000 string-benchmark ] unit-test