Add circular-while*

db4
Jon Harper 2013-07-28 03:32:37 +02:00 committed by John Benediktsson
parent 4797dae4f2
commit 316747e471
3 changed files with 17 additions and 1 deletions

View File

@ -55,6 +55,13 @@ HELP: circular-while
}
{ $description "Calls " { $snippet "quot" } " on each element of the sequence until each call yields " { $link f } " in succession." } ;
HELP: circular-while*
{ $values
{ "circular" circular }
{ "quot" quotation }
}
{ $description "Calls " { $snippet "quot" } " on each element of the sequence until one call yields " { $link f } "." } ;
ARTICLE: "circular" "Circular sequences"
"The " { $vocab-link "circular" } " vocabulary implements the " { $link "sequence-protocol" } " to allow an arbitrary start index and wrap-around indexing." $nl
"Creating a new circular object:"
@ -74,6 +81,6 @@ ARTICLE: "circular" "Circular sequences"
growing-circular-push
}
"Iterating over a circular until a stop condition:"
{ $subsections circular-while } ;
{ $subsections circular-while circular-while* } ;
ABOUT: "circular"

View File

@ -42,3 +42,9 @@ IN: circular.tests
swap growing-circular-push
] with each >array
] unit-test
[ V{ 1 2 3 1 2 } ] [
{ 1 2 3 } <circular> V{ } [
[ [ push ] [ length 4 < ] bi ] curry circular-while
] keep
] unit-test

View File

@ -77,3 +77,6 @@ PRIVATE>
: circular-while ( ... circular quot: ( ... obj -- ... ? ) -- ... )
[ clone ] dip [ <circular-iterator> ] dip (circular-while) ; inline
: circular-while* ( ... circular quot: ( ... obj -- ... ? ) -- ... )
[ clone ] dip '[ [ first @ ] [ rotate-circular ] bi ] curry loop ; inline