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"]])
}
flujoo/gm documentation built on July 12, 2024, 4:56 p.m.