algoforte03a/lib/00-funcs.scd

7 lines
147 B
Plaintext

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