Returns a predicate that passes only when all supplied predicates return true (logical AND).
true
import { between, all } from './iterators';// Only real notes between beats 8 and 16noteIterator().addCondition(all(between(8, 16), (n) => n.isFake === 0)); Copy
import { between, all } from './iterators';// Only real notes between beats 8 and 16noteIterator().addCondition(all(between(8, 16), (n) => n.isFake === 0));
Returns a predicate that passes only when all supplied predicates return
true(logical AND).