Re: [PATCH v2] libstdc++: Implement formatters for pair and tuple [PR109162]

2025-04-16 Thread Jonathan Wakely
On Wed, 16 Apr 2025 at 11:10, Jonathan Wakely wrote: > > On 16/04/25 11:45 +0200, Tomasz Kamiński wrote: > >This patch implements formatter specializations for pair and tuple form > >P2286R8. In addition using 'm` and range_format::map (from P2585R1) for > >ranges are now supported. > > > >The for

Re: [PATCH v2] libstdc++: Implement formatters for pair and tuple [PR109162]

2025-04-16 Thread Jonathan Wakely
On 16/04/25 11:45 +0200, Tomasz Kamiński wrote: This patch implements formatter specializations for pair and tuple form P2286R8. In addition using 'm` and range_format::map (from P2585R1) for ranges are now supported. The formatters for pairs and tuples whose corresponding elements are the same

Re: [PATCH v2] libstdc++: Implement formatters for pair and tuple [PR109162]

2025-04-16 Thread Tomasz Kaminski
On Wed, Apr 16, 2025 at 11:49 AM Tomasz Kamiński wrote: > This patch implements formatter specializations for pair and tuple form > P2286R8. In addition using 'm` and range_format::map (from P2585R1) for > ranges are now supported. > > The formatters for pairs and tuples whose corresponding eleme

[PATCH v2] libstdc++: Implement formatters for pair and tuple [PR109162]

2025-04-16 Thread Tomasz Kamiński
This patch implements formatter specializations for pair and tuple form P2286R8. In addition using 'm` and range_format::map (from P2585R1) for ranges are now supported. The formatters for pairs and tuples whose corresponding elements are the same (after applying remove_cvref_t) derive from the sa