May 22, 2007 Learn » Re: 64 bit types and C libraries | |||
|---|---|---|---|
| |||
...Something like this:
version( SIXTY_FOUR_BIT )
{
typedef ulong PQ_64BIT; // Note that I think... | |||
May 12, 2007 General » extern C: Transition C libraries to D libraries | |||
|---|---|---|---|
| |||
...these.
A common C construct is:
<code>
typedef struct {
int m_property;
} Foo;
void foo... | |||
May 04, 2007 c++ » BUG: typedef not visible for friend? | |||
|---|---|---|---|
| |||
...static bool foo () { return true; }
};
class B {
typedef A AClass;
public:
friend bool exec1 (const... | |||
April 29, 2007 DWT » Re: next version of DWT? | |||
|---|---|---|---|
| |||
...wchar to jchar as a new type: typedef wchar jchar; void setValue( String str ); void... | |||
April 20, 2007 Issues » [Issue 1170] New: Cannot forward reference a type defined in a MixinStatement | |||
|---|---|---|---|
| |||
...mixin("alias int type;");
All of alias, typedef, enum, struct, class, and a template containing... | |||
April 20, 2007 General » Re: suggestion: default values | |||
|---|---|---|---|
| |||
...something vaguely similar using templated functions and "typedef int DefaultType; const Default = DefaultType.ini;" like... | |||
April 14, 2007 Issues » [Issue 1142] .stringof performs semantic analysis | |||
|---|---|---|---|
| |||
...std.stdio;
struct Foo { }
enum Enum { RED }
typedef int myint;
void main()
{
writefln((1+2... | |||
April 12, 2007 c++.stlsoft » Re: A vocabulary for "smart pointers" | |||
|---|---|---|---|
| |||
...shared_ptr
{
//...
public:
typedef T element_type;
typedef T value_type;
typedef T * pointer;
//...Apparently... | |||
April 08, 2007 c++.stlsoft » Re: A vocabulary for "smart pointers" | |||
|---|---|---|---|
| |||
...shared_ptr
{
//...
public:
typedef T element_type;
typedef T value_type;
typedef T * pointer;
//...
Apparently... | |||
April 08, 2007 General » Re: concepts and interfaces | |||
|---|---|---|---|
| |||
...have less distinction between types. For instance typedef FirstInterface SecondInterface; would then be pointless, since... | |||
Copyright © 1999-2021 by the D Language Foundation