Home
last modified time | relevance | path

Searched refs:identical3 (Results 1 – 1 of 1) sorted by relevance

/external/valgrind/main/auxprogs/
DMerge3Way.hs35 let same = identical3 ca cb cc
54 identical3 :: String -> String -> String -> Bool
55 identical3 [] [] [] = True function
56 identical3 (x:xs) (y:ys) (z:zs) function
57 = x == y && y == z && identical3 xs ys zs
58 identical3 _ _ _ = False function