ark_d.amorphic/lib/functions.scd

9 lines
142 B
Plaintext

(
// function to partially match filename for buffers
~getSmp = { |regexp|
~smpBuffers.detect { |buf|
regexp.matchRegexp(buf.path)
}
};
)