In the following MCE, I apply to every item stored within the \l_tmpa_clist clist an inline function that displays this item preceded by its index (its position in the list). For this index, an auxiliary integer is manually incremented at each item considered:
\documentclass{article}
\begin{document}
\ExplSyntaxOn
\clist_set:Nn \l_tmpa_clist {Foo,Bar,Baz}
The~ \verb|\l_tmpa_clist|~ list~ has,~ as:
\begin{itemize}
\clist_map_inline:Nn \l_tmpa_clist {
\int_incr:N \l_tmpa_int
\item element~ \# \int_use:N\l_tmpa_int :~ #1
}
\end{itemize}
\ExplSyntaxOff
\end{document}
My question, not restricted to clists' mapping, is as follows: during *-map_inline, is it possible to access to the index of the considered item without the need to resort an auxiliary integer?
clist, butseqhave\seq_map_indexed_inline:Nn.