From d488ce2e70fbe3fe0a15228a99b161fce716ef60 Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Tue, 21 May 2024 12:06:31 +0200 Subject: [PATCH] Document operator+(int, ring_iterator), operator-(int, ring_iterator) (#30, #31) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f9480dd..e743589 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,9 @@ Note 1: accepts lhs and rhs of different const-ness. |-----------------|:-----------------------------:|----------|--------| | Swap |–/✓| **swap**( ring_span<…> & lhs, ring_span<…> & rhs ) |void | | Iterator offset |✓| **operator+**( ring_iterator<…> it, int i ) noexcept | ring_iterator<…> | +|   |✓| **operator+**( int i, ring_iterator<…> it ) noexcept | ring_iterator<…> | |   |✓| **operator-**( ring_iterator<…> it, int i ) noexcept | ring_iterator<…> | +|   |✓| **operator-**( int i, ring_iterator<…> it ) noexcept | ring_iterator<…> | Legenda: – not in proposal · ✓ in proposal · –/✓ not in proposal/in sg14 code