package ml2mxml

  1. Overview
  2. Docs
type note_duration = [
  1. | `Eighth
  2. | `Half
  3. | `Quarter
  4. | `Sixteenth
  5. | `Whole
]
val range : ?step:int -> int -> int -> int list
val enumerate : 'a list -> (int * 'a) list
type played_note = {
  1. string : int;
  2. fret : int;
}
module Diatonic : sig ... end
type string_clef = [
  1. | `F
  2. | `G
]
type string_instrument = {
  1. strings : Diatonic.t array;
  2. string_clef : string_clef;
}
type drum_element = [
  1. | `China
  2. | `Cowbell
  3. | `Crash
  4. | `Crash_01
  5. | `Hihat
  6. | `Hihat_02
  7. | `Kick
  8. | `PedalHiHat
  9. | `Ride
  10. | `Ride_01
  11. | `Ride_bell
  12. | `Snare
  13. | `Snare_muted
  14. | `Splash
  15. | `Tom
  16. | `Tom_01
  17. | `Tom_02
  18. | `Tom_03
  19. | `Tom_04
]
type string_note = [
  1. | `Chord of played_note list
  2. | `Rest
  3. | `Single of played_note
]
type drum_note = [
  1. | `Chord of drum_element list
  2. | `Rest
  3. | `Single of drum_element
]
type meter = [
  1. | `Duple
  2. | `Triple
]
type tied = [
  1. | `Start
  2. | `Stop
]
type !'a measure_elt = {
  1. note : 'a;
  2. duration : note_duration;
  3. tied : tied option;
  4. meter : meter;
  5. dot : bool;
}
type !'a measure = 'a measure_elt list
type !'a measures = 'a measure list
val duration_to_float : 'a measure_elt -> float
val create_single_note : ?tied:tied option -> ?meter:meter -> ?dot:bool -> note_duration -> 'a -> [> `Single of 'a ] measure_elt
val create_chord : ?tied:tied option -> ?meter:meter -> ?dot:bool -> note_duration -> 'a -> [> `Chord of 'a ] measure_elt
val create_rest : ?meter:meter -> ?dot:bool -> note_duration -> [> `Rest ] measure_elt
val find_note_in_guitar : played_note -> played_note
val transpose_note : int -> played_note -> played_note
val transpose_string_note : int -> [< `Chord of played_note list | `Rest | `Single of played_note ] measure_elt -> [> `Chord of played_note list | `Rest | `Single of played_note ] measure_elt
val lower_string_note_by_fifth : [< `Chord of played_note list | `Rest | `Single of played_note ] measure_elt -> [> `Chord of played_note list | `Rest | `Single of played_note ] measure_elt
val repeat_note_patterns : int -> 'a list -> 'a list
val repeat_note : int -> 'a -> 'a list
val create_measure : 'a measure_elt list -> 'a measure_elt list
val repeat_measures : int -> 'a -> 'a list
val transpose_measure : int -> [< `Chord of played_note list | `Rest | `Single of played_note ] measure_elt list -> [> `Chord of played_note list | `Rest | `Single of played_note ] measure_elt list
val transpose_measures : int -> [< `Chord of played_note list | `Rest | `Single of played_note ] measure_elt list list -> [> `Chord of played_note list | `Rest | `Single of played_note ] measure_elt list list
val create_string_note : ?tied:tied option -> ?meter:meter -> ?dot:bool -> note_duration -> int -> int -> [> `Single of played_note ] measure_elt
val create_string_chord : ?tied:tied option -> ?meter:meter -> ?dot:bool -> note_duration -> (int * int) list -> [> `Chord of played_note list ] measure_elt
val create_drum_note : ?tied:tied option -> ?meter:meter -> ?dot:bool -> note_duration -> 'a -> [> `Single of 'a ] measure_elt
val create_drum_chord : ?tied:tied option -> ?meter:meter -> ?dot:bool -> note_duration -> 'a -> [> `Chord of 'a ] measure_elt
val create_string_sixteenth : ?tied:tied option -> ?meter:meter -> ?dot:bool -> int -> int -> [> `Single of played_note ] measure_elt
val create_string_eighth : ?tied:tied option -> ?meter:meter -> ?dot:bool -> int -> int -> [> `Single of played_note ] measure_elt
val create_string_chord_eighth : ?tied:tied option -> ?meter:meter -> ?dot:bool -> (int * int) list -> [> `Chord of played_note list ] measure_elt
val create_string_quarter : ?tied:tied option -> ?meter:meter -> ?dot:bool -> int -> int -> [> `Single of played_note ] measure_elt
val create_string_half : ?tied:tied option -> ?meter:meter -> ?dot:bool -> int -> int -> [> `Single of played_note ] measure_elt
val create_drum_sixteenth : ?tied:tied option -> ?meter:meter -> ?dot:bool -> 'a -> [> `Single of 'a ] measure_elt
val create_drum_eighth : ?tied:tied option -> ?meter:meter -> ?dot:bool -> 'a -> [> `Single of 'a ] measure_elt
val create_drum_quarter : ?tied:tied option -> ?meter:meter -> ?dot:bool -> 'a -> [> `Single of 'a ] measure_elt
val create_drum_half : ?tied:tied option -> ?meter:meter -> ?dot:bool -> 'a -> [> `Single of 'a ] measure_elt
val create_drum_chord_quarter : ?tied:tied option -> ?meter:meter -> ?dot:bool -> 'a -> [> `Chord of 'a ] measure_elt
val make_standard_bass_shift : Diatonic.t -> Diatonic.t
val generate_bass : int -> Diatonic.t -> Diatonic.t list
val std5_bass : string_instrument
val std_guitar : string_instrument
OCaml

Innovation. Community. Security.