IRC channel logs
2024-05-23.log
back to list of logs
<old>if cl has it, why not guile <Kolev>daviwil, Gerald Sussman fez? <old>is there a channel for hoot? <old>I wonder, will Guile be the first scheme entirely runnable on the web via hoot? <freakingpenguin>Is there a built-in one-function procedure to append lists together and delete duplicates simultaneously or do you have to append and delete separately? <shawnw>With the SRFI-1 module loaded, (delete-duplicates! (append list1 list2 ... listN)) is simple enough. <shawnw>Or maybe a trip through a hash table if you don't care about order. <mwette>I think I lost my erc. if this is repeat I apologize <mwette>(lset-union equal? '(a b c) '(b c d)) => (d a b c)