//
// (c) 2020 Hubert Figuière
//
// License: LGPL-3.0-or-later
//! Utilities to handle MIDI notes.
/// A Note value in Midi
///
/// MIDI Note are simply 0..127
pub type MidiNote = u8;
/// Return if the midi_note is an accidental.
///
/// This can be used to determine if the note is a black key
/// on a piano style keyboard.