midi cc input poc
This commit is contained in:
parent
0a8874180c
commit
0f72729f0d
2 changed files with 22 additions and 8 deletions
|
|
@ -2336,3 +2336,9 @@ export const fit = register('fit', (pat) =>
|
|||
export const { loopAtCps, loopatcps } = register(['loopAtCps', 'loopatcps'], function (factor, cps, pat) {
|
||||
return _loopAt(factor, pat, cps);
|
||||
});
|
||||
|
||||
/** exposes a custom value at query time. basically allows mutating state without evaluation */
|
||||
export const ref = (accessor) =>
|
||||
pure(1)
|
||||
.withValue(() => reify(accessor()))
|
||||
.innerJoin();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue