そのようなクラスをいつ使用する可能性がありますか。
class IteratorFacadeAccess
{
public:
template<class Ret, class T>
static Ret dereference(const T& t)
{
return t.dereference();
}
};
使用しているAPIで気づきましたが、その目的がわかりません。
そのようなクラスをいつ使用する可能性がありますか。
class IteratorFacadeAccess
{
public:
template<class Ret, class T>
static Ret dereference(const T& t)
{
return t.dereference();
}
};
使用しているAPIで気づきましたが、その目的がわかりません。