abl_link_create method

abl_link abl_link_create(
  1. double bpm
)

! @brief Construct a new abl_link instance with an initial tempo. Thread-safe: yes Realtime-safe: no

Implementation

abl_link abl_link_create(
  double bpm,
) {
  return _abl_link_create(
    bpm,
  );
}