nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
plain_text
23 days ago
172 B
2
Indexable
Never
span'' :: (a-> Bool) -> [a] -> ([a],[a])
span'' _ [] = ([],[])
span'' f (x:xs) | f x = (x:a,b)
                | otherwise = ([],x:xs)
            where (a,b) = span'' f xs
Leave a Comment


nord vpnnord vpn
Ad