export function isContiguousSimpleString(x: any): x is ContiguousSimpleString {
    return x.type === "ContiguousSimpleString" && isArray(x.data);
}