Short answer: Yes.
Medium answer: Just because you can doesn't mean you should.
Long answer: There might be use-case for this?
See: https://dbfiddle.uk/8dBcdID7
METHOD:
Data element is a structured type that's conducive to loop (comma-delim string, ARRAY[], JSON ARRAY{}, etc. )
Use correlated in-line subquery (in the SELECT clause)
Nest inner query: WITH RECURSIVE ... () CTE inside that sub-select
Use correlated/lateral JOIN to main query to fetch current row
Loop thru the recursive CTE positions in the array
Return result to outer subquery
Return result to main query