$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] Boost iterator facade implementation
From: rmawatson rmawatson (rmawatson_at_[hidden])
Date: 2018-10-26 00:41:46
I was wondering about is_non_proxy_reference<Reference,Value> in this metafunction. It appears to select between postfix_increment_proxy<Iterator> and writable_postfix_increment_proxy<Iterator> based on whether Reference is the same type as Value ignoring cv&
what is the case that writable_postfix_increment_proxy<Iterator> is selected. So when is Reference going to be a different 'base type' to Value?
is this to support user returning their own proxy or something?