Returns a predicate that passes when the note's start beat is >= start and < end.
>= start
< end
Inclusive lower beat bound.
Exclusive upper beat bound.
// Only process notes in the first verse (beats 0–32)noteIterator().addCondition(between(0, 32));// Or use the shorthand method:noteIterator().between(0, 32); Copy
// Only process notes in the first verse (beats 0–32)noteIterator().addCondition(between(0, 32));// Or use the shorthand method:noteIterator().between(0, 32);
Returns a predicate that passes when the note's start beat is
>= startand< end.