chuck icon indicating copy to clipboard operation
chuck copied to clipboard

ChucK Music Programming Language

Results 149 chuck issues
Sort by recently updated
recently updated
newest added

Hello everyone, Casting an object to a string has chuck crash at once. Something as simple as: `"a" => Object o; o $ string;` Same behavior with references (found that...

Would be nice to be able to discover the current set of string keys in the associative array component of an array. Perhaps it's as "simple" as implementing a keys()...

I am trying to create reusable UGen chains that I can chuck in to my dac. Chubgraph looks like the way to go but it does not support stereo. It...

I have the following piece of code, built for the purposes of following along with the chuck docs: `1.ck` ``` fun void harmonize(float fq) { SinOsc s => dac; fq...

Since ChucK’s redesign, separating the core functionality and introducing chuck-lib so it could be more easily embedded into other programs. I’m wondering if there has been any thought given to...

The API differences between ChucK's current RtMidi and RtAudio are minimal. Might take a few more tweaks but it compiles and passes test suite...

From an email thread: > Chubgraphs (and ChuGens) don't support stereo operation at this time. Its > something we've thought a lot about, but wanted to focus on getting mono...

If one accidentally tries to append string functions as fields ChucK throws a segfault ``` $ cat segfault.ck class Foo { fun string name() { return "foo"; } } Foo...

The doc does not make it clear if associative arrays can be multidimensional, it appears not ``` $ cat multi-assoc.ck class Foo { string name; } Foo assoc1d[0]; Foo assoc2d[0][0];...

There is nothing in the documentation about using the find method on associative array keys. Some exmaples of its use would be very helpful. Thanks.