#19256·arrow

[C++] Right-justify array values in PrettyPrint

Author: asfimportCreated Jul 19, 2018Updated Sep 18, 2026
LabelsType: enhancementComponent: C++

Currently we the output of PrettyPrint for an array looks as follows:

java

[
  1,
  NA
]

We should right-justify it for better readability:

java

[
   1,
  NA
]

Reporter: Uwe Korn / @xhochy

Related issues:

Note: This issue was originally created as ARROW-2885. Please see the migration documentation for further details.