 
            
            
            
            
                22 Oct
                
                    2006
                
            
            
                22 Oct
                
                '06
                
            
            
            
        
    
                9:50 a.m.
            
        On Sat, 21 Oct 2006, Josef Svenningsson wrote:
I'd like to propose to include the following function in Data.List: join :: [a] -> [[a]] -> [a] join x xs = concat (intersperse x xs)
analogously to concatMap = concat . map we might prefer concatIntersperse = concat . intersperse