How to align the contents of the \thead cell to the right?
\documentclass[12pt]{memoir}
\usepackage{tabularx}
\usepackage{makecell}
\begin{document}
\begin{tabular}{|c|}
\thead{Content \\ Other alignment}
\end{tabular}
\end{document}
I know I can globally override all \thead environments alignment with something line \renewcommand\theadalign{ll}. Is there another way other than globally overriding all \thead environments alignment, i.e., doing it only for one cell?

