The templates tag is used in multiple contexts: generic programming (especially C++), and data/document generation using template engines.

learn more… | top users | synonyms (1)

147
votes
26answers
21k views

Useful Eclipse Java Code Templates

You can create various Java code templates in Eclipse via the Window->Preferences->Java -> Editor -> Templates e.g. sysout is expanded to: ...
130
votes
16answers
43k views

jQuery templating engines

I am looking for a template engine to use client side. I have been trying a few like jsRepeater and jQuery Templates. While they seem to work OK in FireFox they all seem to break down in IE7 when it ...
85
votes
14answers
8k views

What are the differences between Generics in C# and Java… and Templates in C++?

I mostly use Java and generics are relatively new. I keep reading that Java made the wrong decision or that .NET has better implementations etc. etc. So, what are the main differences between C++, ...
70
votes
37answers
6k views

What ReSharper 4+ live templates for C# do you use?

What ReSharper 4.0 templates for C# do you use? Let's share these in the following format: [Title] Optional description Shortcut: shortcut Available in: [AvailabilitySetting] // Resharper ...
67
votes
15answers
8k views

What are good resources for CSS templates or templated layout sites?

Does not have to be free, I'm just not a designer and loathe starting from scratch. Any suggestions would be appreciated.
65
votes
9answers
18k views

Use 'class' or 'typename' for template parameters?

When defining a function template or class template in C++, one can write this: template <class T> ... or one can write this: template <typename T> ... Is there a good reason to ...
64
votes
4answers
2k views

Pretty-print C++ STL containers

Please take note of the updates at the end of this post. Update: I have created a public project on GitHub for this library! I would like to have a single template that once and for all takes care ...
60
votes
13answers
10k views

Is it possible to write a C++ template to check for a function's existence?

Is it possible to write a C++ template that changes behavior depending on if a certain member function is defined on a class? Here's a simple example of what I would want to write: template<class ...
55
votes
3answers
5k views

Where and why do I have to put the “template” and “typename” keywords?

In templates, where and why do I have to put typename and template on dependent names? What exactly are dependent names anyway? I have the following code: template <typename T, typename Tail> ...
43
votes
8answers
13k views

Can I access constants in settings.py from templates in Django?

I have some stuff in settings.py that I'd like to be able to access from a template, but I can't figure out how to do it. I already tried {{CONSTANT_NAME}} but that doesn't seem to work. Is this ...
41
votes
10answers
1k views

Automatically pick a variable type big enough to hold a specified number

Is there any way in C++ define a type that is big enough to hold at most a specific number, presumably using some clever template code. For example I want to be able to write :- ...
41
votes
21answers
33k views

Can I set up HTML/Email Templates with ASP.NET?

I'm working on a site that will send out a significant number of emails. I want to set up both header and footer text, or maybe even templates to allow the users to easily edit these emails if they ...
37
votes
8answers
15k views

Storing C++ template function definitions in a .CPP file

I have some template code that I would prefer to have stored in a CPP file instead of inline in the header. I know this can be done as long as you know which template types will be used. For ...
37
votes
9answers
4k views

How do I use Django templates without the rest of Django?

I want to use the Django template engine in my (Python) code, but I'm not building a Django-based web site. How do I use it without having a settings.py file (and others) and having to set the ...
36
votes
5answers
4k views

Default template arguments for function templates

Why are default template arguments only allowed on class templates? Why can't we define a default type in a member function template? For example: struct mycclass { template<class T=int> ...
35
votes
6answers
23k views

Where can I find free WPF controls and control templates?

I am looking for some recommendations on good places to find libraries of controls/templates/styles for WPF. I know about the usual places like Infragistics, but it seems to me that there should be ...
34
votes
4answers
1k views

Opening/closing tags & performance?

This may be a silly question, but as someone relatively new to PHP, I'm wondering if there are any performance-related issues to frequently opening and closing PHP tags in HTML template code, and if ...
33
votes
6answers
17k views

In Rails, how do you render JSON using a view?

Suppose you're in your users controller and you want to get a json response for a show request, it'd be nice if you could create a file in your views/users/ dir, named show.json and after your ...
33
votes
3answers
10k views

Change templates in Xcode

How would I change the initial templates created by Xcode when creating a new Cocoa Class. I am referring to the comments and class name created when using Xcode's new class wizard.
32
votes
11answers
2k views

Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)

I mean, aside from its obligating name (the Standard Template Library)... C++ initially intended to present OOP concepts into C. That is: you could tell what a specific entity could and couldn't do ...
31
votes
1answer
904 views

Why can't I compile this unholy, templated mess?

I don't get it, it seems to me that the call to f is completely unambiguous, but it fails to compile with "expected primary-expression before ‘int’". If I comment out the line with the call to f, it ...
31
votes
7answers
5k views

Why can templates only be implemented in the header file?

Quote from The C++ standard library: a tutorial and handbook: The only portable way of using templates at the moment is to implement them in header files by using inline functions. Why is this?
31
votes
8answers
6k views

Best introduction to C++ template metaprogramming?

Static metaprogramming (aka "template metaprogramming") is a great C++ technique that allows the execution of programs at compile-time. A light bulb went off in my head as soon as I read this ...
30
votes
18answers
3k views

Smarty, the best choice?

We are developing a huge website, it will get lots of traffic, right now we are analyzing our options and Smarty looks nice but i have seen lots of flames about this, some love it some hate it. What ...
30
votes
20answers
19k views

How can I add reflection to a C++ application?

I'd like to be able to introspect a C++ class for its name, contents (i.e. members and their types) etc. I'm talking native C++ here, not managed C++, which has reflection. I realise C++ supplies some ...
29
votes
4answers
2k views

How `is_base_of` works?

Why the following code works? typedef char (&yes)[1]; typedef char (&no)[2]; template <typename B, typename D> struct Host { operator B*() const; operator D*(); }; template ...
29
votes
7answers
6k views

Get Visual Studio to run a T4 Template on every build

How do I get a T4 template to generate its output on every build? As it is now, it only regenerates it when I make a change to the template. I have found other questions similar to this: ...
26
votes
5answers
330 views

Circumventing template specialization

Suppose I am a user of a Certain Template Library (CTL) which defines a template, named, say, Hector template <class T> class Hector {...}; And in its documentation it gives many guarantees ...
25
votes
2answers
363 views

Does casting to a pointer to a template instantiate that template?

static_cast<the_template<int>*>(0) - does this instantiate the_template with type int? The reason for asking is the following code, which will error at linking time with an undefined ...
25
votes
1answer
208 views

Can I use template aliases as template template parameters?

Can I use template aliases as template template parameters? template <template <typename> class> struct foo {}; template <typename T> using simple_ptr = std::unique_ptr<T>; ...
25
votes
2answers
1k views

Template Metaprogramming - Difference Between Using Enum Hack and Static Const

I'm wondering what the difference is between using a static const and an enum hack when using template metaprogramming techniques. EX: (Fibonacci via TMP) template< int n > struct TMPFib { ...
24
votes
3answers
3k views

Explanation of <script type = “text/template”> … </script>

I just stumbled upon something I've never seen before. In the source of Backbone.js's example TODO application (Backbone TODO Example) They had their templates inside a <script type = ...
24
votes
9answers
22k views

Will Visual Studio 2010 support HTML 5?

Since Visual Studio 2010 is slated for release in March of 2010 and HTML 5 is now starting to be used even more widely, I would like to know if Visual Studio will ship with HTML 5 templates, standard ...
24
votes
8answers
9k views

Recommended JavaScript HTML template library for JQuery?

Any suggestions on which HTML template library would go well with JQuery? Googling turns up quite a number of libraries but I'm not sure whether there is a well recognized library that would stand ...
23
votes
1answer
1k views

Odd behavior when recursively building a return type for variadic functions

This is probably going to be a really simple explanation, but I'm going to give as much backstory as possible in case I'm wrong. Advanced apologies for being so verbose. I'm using gcc4.5, and I ...
23
votes
7answers
6k views

Can a member function template be virtual?

I have heard that member function templates can't be virtual. Is this true? If they can be virtual, what is an example of a scenario in which one would use such a function?
23
votes
7answers
1k views

How to call a templated function if it exists, and something else otherwise?

I want to do something like template <typename T> void foo(const T& t) { IF bar(t) would compile bar(t); ELSE baz(t); } I thought that something using enable_if would do ...
23
votes
3answers
5k views

C++ SFINAE examples?

I want to get into more template meta-programming. I know that SFINAE stands for "substitution failure is not an error." But can someone show me a good use for SFINAE?
23
votes
4answers
16k views

How to populate a WPF grid based on a 2-dimensional array

I have a 2-dimensional array of objects and I basically want to databind each one to a cell in a WPF grid. Currently I have this working but I am doing most of it procedurally. I create the correct ...
23
votes
24answers
4k views

Are C++ Templates just Macros in disguise?

I've been programming in C++ for a few years, and I've used STL quite a bit and have created my own template classes a few times to see how it's done. Now I'm trying to integrate templates deeper ...
22
votes
2answers
435 views

Template instantiation details of GCC and MS compilers

Could anyone provide a comparison or specific details of how is template instantiation handled at compile and/or link time in GCC and MS compilers? Is this process different in the context of ...
22
votes
9answers
5k views

Can you recommend a .net template engine?

I am looking for a .net templating engine - something simple, lightweight, stable with not too many dependencies. All I need it for at the moment is creating templated plain text and html emails. ...
21
votes
2answers
7k views

Get the current URL within a django template

Hay, i was wondering how to get the current URL within a template. Say my URL was /user/profile/ How do i return this to the template? Thanks
21
votes
3answers
2k views

GCC error with variadic templates: “Sorry, unimplemented: cannot expand 'Identifier…' into a fixed-length arugment list”

While doing variadic template programming in C++11 on GCC, once in a while I get an error that says "Sorry, unimplemented: cannot expand 'Identifier...' into a fixed-length arugment list." If I ...
21
votes
6answers
17k views

Highlight whole TreeViewItem line in WPF

If I set TreeViewItem Background it highlights the header only. How can I highlight the whole line? I have found a post almost solving a problem ...
20
votes
3answers
414 views

Tools to generate higher-quality error messages for template-based code?

Concepts, that would render these tools unnecessary, are not part of C++11. STLFilt would have been one option but it is no longer maintained. Clang claims to give expressive diagnostics although ...
20
votes
3answers
326 views

Local classes : C++03 vs. C++11

Is there any change in the usage of local class in C++11? It seems in C++03 local classes cannot be used as template argument (I recall that). Consider this code, template<typename T> void ...
20
votes
6answers
887 views

C++ Templates: Angle brackets problems

In C++ templates are instantiated with angle brackets vector<int> and the Java and C# languages have adopted the same syntax for their generics. The creators of D, however, have been quite ...
20
votes
7answers
1k views

C++: Can virtual inheritance be detected at compile time?

I would like to determine at compile time if a pointer to Derived can be cast from a pointer to Base without dynamic_cast<>. Is this possible using templates and metaprogramming? This isn't exactly ...
20
votes
3answers
1k views

SFINAE with invalid function-type or array-type parameters?

Please consider this code: template<typename T> char (&f(T[1]))[1]; template<typename T> char (&f(...))[2]; int main() { char c[sizeof(f<void()>(0)) == 2]; } I expected ...

1 2 3 4 5 171