I am not sure whether this is possible or not.
I would like to have some control on the horizontal alignment of columns in tikzcd.
In particular I would like to be able to mimic (on some of my diagrams) the right alignment - left alignment alternation.
So, I would like that the first diagram in the following MWE aligns like the second one
\documentclass[a4paper,11pt,fleqn,oneside]{book}%
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{matrix, arrows, cd, patterns}
\begin{document}
\begin{tikzcd}[baseline=(current bounding box.center), row sep = 0ex]
\text{something long} \arrow[r] & \text{something else long}\\
a \arrow[r, mapsto] & b
\end{tikzcd}
\begin{align*}
\text{something long} & \longrightarrow \text{something else long}\\
a &\longmapsto b
\end{align*}
\end{document}
Is it possible to do it? How?
I already tried with the column 1./style={anchor=base east} (and base west) but with no success.

