Note
public struct Note : CustomStringConvertible, Codableextension Note: ComparableDefinition of a MIDI note.
- 
                  
                  Undocumented DeclarationSwift static let sharpTag: String
- 
                  
                  Undocumented DeclarationSwift static let noteLabels: [String]
- 
                  
                  Undocumented DeclarationSwift static let solfegeLabels: [String]
- 
                  
                  The MIDI value to emit to generate this note DeclarationSwift public let midiNoteValue: Int
- 
                  
                  True if this note is accented (sharp or flat) DeclarationSwift public let accented: Bool
- 
                  
                  Obtain a textual representation of the note DeclarationSwift public var label: String { get }
- 
                  
                  Obtain the solfege representation for this note DeclarationSwift public var solfege: String { get }
- 
                  
                  Obtain the octave this note is a part of DeclarationSwift public var octave: Int { get }
- 
                  
                  Custom string representation for a Note instance DeclarationSwift public var description: String { get }
- 
                  
                  Create new Note instance. DeclarationSwift public init(midiNoteValue: Int)ParametersmidiNoteValueMIDI note value for this instance 
- 
                  
                  Undocumented DeclarationSwift public init?(_ tag: String)
- 
                  
                  Allow for ordering of Note instances DeclarationSwift public static func < (lhs: Note, rhs: Note) -> BoolParameterslhsfirst argument to compare rhssecond argument to compare Return Valuetrue if first comes before the second 
- 
                  
                  Allow for equality comparisons between Note instances DeclarationSwift public static func == (lhs: Note, rhs: Note) -> BoolParameterslhsfirst argument to compare rhssecond argument to compare Return Valuetrue if the same 
 View on GitHub
View on GitHub Note Structure Reference
        Note Structure Reference