Suppose that you want to check whether a character in C++ belongs to a fixed set, such as '', 'x09', 'x0a','x0d', ' ', '#', '/', ':', '<', '>', '?', '@', '[', '\', ']', '^', '|'. A simple way is to generate a 256-byte array of Boolean values and lookup the value. This approach is sometimes cal