isCompound property

bool isCompound

Whether this Size is greater than Size.octave.

Example:

Size.fifth.isCompound == false
(-Size.sixth).isCompound == false
Size.octave.isCompound == false
Size.ninth.isCompound == true
(-Size.eleventh).isCompound == true
Size.thirteenth.isCompound == true

Implementation

bool get isCompound => abs() > octave;