R/4-musicxml-key.R

Defines functions insert.Key to_MusicXML.Key

Documented in insert.Key to_MusicXML.Key

#' @keywords internal
#' @export
to_MusicXML.Key <- function(x, ...) {
  MusicXML(
    "key",
    MusicXML("fifths", x[["key"]]),
    list(number = x[["staff"]])
  )
}


#' @keywords internal
#' @export
insert.Key <- function(x, to, ...) {
  insert_attribute(x, to, x[["part"]] + 1, x[["bar"]])
}

Try the gm package in your browser

Any scripts or data that you put into this service are public.

gm documentation built on Sept. 11, 2024, 6:11 p.m.