On 7 November 2016 at 09:27, Anon User wrote:
| By “Constructor Validator”, I was referring to the validator function pointer
used to "implement dispatch to the appropriate constructor when multiple
constructors taking the same number of arguments are exposed," as mentioned in
your book “Seamle
Thank you Dirk. I am very new to rcpp devel so I apologize if my terminology is
inaccurate.
By “Constructor Validator”, I was referring to the validator function pointer
used to "implement dispatch to the appropriate constructor when multiple
constructors taking the same number of arguments ar
On 6 November 2016 at 11:36, Anon User wrote:
| Hi,
|
| Could someone point me to documentation or provide an example on how to
use constructor validator to handle the following case:
Could you provide a definition or reference for 'constructor validator'?
That is not a term we use here r
Hi,
Could someone point me to documentation or provide an example on how to
use constructor validator to handle the following case:
class Foo;
struct Bar
{
Bar(const Foo&, int);
Bar(int, int);
…
};