digitalmars.D - Template colon
- Gen (5/5) Jan 24 2015 void write(FOO: bar.foo)()
- ketmar (2/7) Jan 24 2015 here is the link which explains alot of things: http://dlang.org/templat...
- Hampus Rosencrantz (2/7) Jan 24 2015 It's a template specialization.
void write(FOO: bar.foo)()
{
}
what does the colon mean?
FOO: bar.foo
Jan 24 2015
On Sat, 24 Jan 2015 21:16:13 +0000, Gen wrote:
void write(FOO: bar.foo)()
{
}
=20
what does the colon mean? FOO: bar.foo
here is the link which explains alot of things: http://dlang.org/template=
Jan 24 2015
On Saturday, 24 January 2015 at 21:16:14 UTC, Gen wrote:
void write(FOO: bar.foo)()
{
}
what does the colon mean?
FOO: bar.foo
It's a template specialization.
Jan 24 2015









ketmar <ketmar ketmar.no-ip.org> 