fix "every" example
This commit is contained in:
parent
cf7b2b2acf
commit
7ca8c8d298
1 changed files with 2 additions and 2 deletions
|
|
@ -331,13 +331,13 @@ Will reverse the pattern:
|
||||||
|
|
||||||
Will apply the given function every n cycles:
|
Will apply the given function every n cycles:
|
||||||
|
|
||||||
<MiniRepl tune={`cat(e5, pure(b4).every(4, late(0.5)))`} />
|
<MiniRepl tune={`cat(e5, "b4".every(4, late(0.5)))`} />
|
||||||
|
|
||||||
<!-- TODO: should be able to do b4.every => like already possible with fast slow etc.. -->
|
<!-- TODO: should be able to do b4.every => like already possible with fast slow etc.. -->
|
||||||
|
|
||||||
Note that late is called directly. This is a shortcut for:
|
Note that late is called directly. This is a shortcut for:
|
||||||
|
|
||||||
<MiniRepl tune={`cat(e5, pure(b4).every(4, x => x.late(0.5)))`} />
|
<MiniRepl tune={`cat(e5, "b4".every(4, x => x.late(0.5)))`} />
|
||||||
|
|
||||||
<!-- TODO: should the function really run the first cycle? -->
|
<!-- TODO: should the function really run the first cycle? -->
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue