IRC channel logs
2023-12-27.log
back to list of logs
<daviid>count3rmeasure: probably a 'false positive', the list that appear on guile's website is built automatically from the list of projects in guix (that use guile) - so that list is (largely) incomplete, and probably contains a few false positive ... <dsmith>sneek, later tell wmedrano What. Are. You. Doing!? <sneek>I've been aware for one month and 18 days <sneek>This system has been up 38 weeks, 3 days, 6 hours, 33 minutes <dsmith>sneek later tell wmedrano What Are You Doing!? <dsmith>sneek later tell wmedrano What Are You Doing! <tomnor>Say two functions f1 and f2 like this: <tomnor>f2: (lambda (x . y) ... (f1 x y)) <tomnor>Is there a way to "unpack" y in the call to f1? <tomnor>I mean, in f2, y might be like (a1 a2) <tomnor>And then in f1, b will be seen as ((a1 a2)) <tomnor>This is bikeshedding of course, but anyway <jpoiret>tomnor: you can use apply: (apply f a b rest) will call f with argument list (a b . rest) <jpoiret>it's variadic so you can do (apply f rest) or (apply f a b c d rest)