Search

June 07, 2008
Learn »
...class Window { ... };
... // derived classes are defined here
typedef std::vector<std::tr1::shared_ptr<Window...
May 28, 2008
Issues »
...what I was saying earlier (about a typedef).  You could do an is-expression to...
May 20, 2008
General »
...appropriate to call D's expanded typedef a typedef and so he gave it a...
May 18, 2008
Learn »
...sizeof(T) << std::endl;
        }
};

int main() {
    typedef int T1;
    typedef A<int> T2;
    B<T1...
May 11, 2008
General »
...typical trick I often do is this:

typedef std::vector<Item*> Items;
Items items;

items...
May 08, 2008
GDC »
...return s;
}
}

typedef vector!(float, 3) vector3f;
typedef vector!(float, 4) vector4f;
typedef vector!(double...
May 03, 2008
General »
...C  will look like :
typedef void   *POINTER;      /* General purpose pointer */


typedef struct                /* A CONS is...
May 01, 2008
Issues »
...of Foo?  What if Foo is a typedef to int *?

There are really two problems...
April 29, 2008
Issues »
...foo(T)
{
        T value;
}

template bar(T)
{
        typedef foo!(T) bar;
}

void main(string[] args...
April 29, 2008
Learn »
...d like to see this as well

typedef foo!(T) bar(T);

or if the...
215 216 217 218 219 220 221 222 223 224 225
Next ›   Last »