Searched refs:identical3 (Results 1 – 1 of 1) sorted by relevance
35 let same = identical3 ca cb cc54 identical3 :: String -> String -> String -> Bool55 identical3 [] [] [] = True function56 identical3 (x:xs) (y:ys) (z:zs) function57 = x == y && y == z && identical3 xs ys zs58 identical3 _ _ _ = False function