Minor

public enum Minor

Provides harmonic and melodic minor modes through Minor.Harmonic and Minor.Melodic respectively.

  • Harmonic minor modes. Accessed by numbered cases, e.g. Modes.Minor.Harmonic.fifth.offsets returns [0, 1, 4, 5, 7, 8, 10]

    See more

    Declaration

    Swift

    public enum Harmonic: Int
  • Melodic minor modes. Accessed by numbered cases, e.g. Modes.Minor.Melodic.fifth.offsets returns [0, 2, 3, 5, 7, 8, 10].

    See more

    Declaration

    Swift

    public enum Melodic: Int