isSuffixOf package:storablevector

O(n) The isSuffixOf function takes two Vectors and returns True iff the first is a suffix of the second. The following holds:
isSuffixOf x y == reverse x `isPrefixOf` reverse y