makeAnyConstRef overloads

Synopses

Declared in <bdlar_refutil.h>

Make AnyConstRef to the specified object.

template<class t_TYPE>
static
AnyConstRef
makeAnyConstRef(t_TYPE const& object)
requires !IsDynamic<t_TYPE>::value;

Make AnyConstRef to the specified dynamic object.

template<class t_TYPE>
static
AnyConstRef
makeAnyConstRef(t_TYPE const& object)
requires IsDynamic<t_TYPE>::value;

Return Value

an AnyConstRef for object

Parameters

Name

Description

object

object to wrap as AnyConstRef

Created with MrDocs