1# integer64 output will use scientific if necessary
2
3    Code
4      pillar(add_special(x), width = 6)
5    Output
6      <pillar>
7      <int6>
8        0
9        1e11
10        1e12
11       NA
12    Code
13      pillar(add_special(x), width = 7)
14    Output
15      <pillar>
16      <int64>
17         0
18         1e11
19         1e12
20        NA
21    Code
22      pillar(add_special(x), width = 8)
23    Output
24      <pillar>
25       <int64>
26          0
27          1e11
28          1e12
29         NA
30    Code
31      pillar(add_special(x), width = 9)
32    Output
33      <pillar>
34        <int64>
35           0
36           1e11
37           1e12
38          NA
39    Code
40      pillar(add_special(x), width = 10)
41    Output
42      <pillar>
43         <int64>
44            0
45            1e11
46            1e12
47           NA
48    Code
49      pillar(add_special(x), width = 11)
50    Output
51      <pillar>
52          <int64>
53             0
54             1e11
55             1e12
56            NA
57    Code
58      pillar(add_special(x), width = 12)
59    Output
60      <pillar>
61           <int64>
62              0
63              1e11
64              1e12
65             NA
66    Code
67      pillar(add_special(x), width = 13)
68    Output
69      <pillar>
70            <int64>
71                  0
72       100000000001
73      1000000000002
74                 NA
75    Code
76      pillar(add_special(x), width = 14)
77    Output
78      <pillar>
79             <int64>
80                   0
81        100000000001
82       1000000000002
83                  NA
84
85