ark_d.amorphic/lib/functions.scd

9 lines
142 B
Plaintext
Raw Normal View History

2020-12-07 01:28:37 +01:00
(
// function to partially match filename for buffers
~getSmp = { |regexp|
~smpBuffers.detect { |buf|
regexp.matchRegexp(buf.path)
}
};
)