The templates tag is used in multiple contexts: generic programming (especially C++), and data/document generation using template engines.
2
votes
0answers
30 views
Is there a way to make these closely-related types interoperable?
I have a template class for treating data stored elsewhere as a 2-D image.
template <typename Pixel>
class ImageWin {
...
};
It has iterators for read/write access to the underlying image ...
3
votes
1answer
33 views
Templatized ostream overload ambiguity error : basic_ostream<char> vs const char[]
I am trying to understand ostream overloads. Consider this
#include <iostream>
using std::ostream;
enum class A{a1, a2, a3};
template <class T>
ostream& ...
1
vote
1answer
50 views
C++ could not deduce template argument
I'm writing a generic class for logging which
can be called as a functor with the string to log
enriches the string with some information (system time, log level, ...)
passes the log message to an ...
0
votes
1answer
15 views
Need Suggestion on Using Underscore Templates in Backbone Views
Im working on an ASP.NET MVC web application in which we are using Backbone.js framework for organizing client side architecture and design. Our application is totally dynamic, creating most of the ...
0
votes
1answer
12 views
Sub template is not rendering using backbone and underscore
I have two templates (Header and Details)
- Header contains some details and also on place holder for Details sections
- Details contain some more details.
My problem is when i run application it ...
7
votes
3answers
142 views
Template functions versus named lambdas with auto parameters
What are the differences between
template <typename T> void func( T t ) { /* ... */ }
and the C++14 alternative using lambdas with auto parameters?
auto func = []( auto t ) { /* ... */ }
...
10
votes
2answers
204 views
How can I make is_pod<T> tests be performed during compilation and not execution?
This might be an easy question, I don't master C++11 templates at all.
I have a generic vector class that is not std::vector<T> for performance reasons (very specific code).
I have observed ...
-5
votes
0answers
35 views
I am trying to create a template to use in office [closed]
I am trying to find a code to validate options
For e.g. :
If check box is checked then copy abcd else skip it and proceed to the next check box and copy to clip board.
the following is what I am ...
0
votes
0answers
34 views
Template Argument Deduction for Pointer to Member Function
I know there are a lot of other similar questions, but none of the ones I have looked at seem to apply to what I'm doing. The jist of what I have is:
template <typename T>
void CallFn(T *p, ...
0
votes
0answers
11 views
Jinja2 block the Skeleton Framework's css
I am using Google App Engine with python to setup a simple web site. I found that the layout framework Skeleton is very simple to use and looks good. But the thing is it doesn't work with the Jinja2 ...
1
vote
2answers
68 views
Functions and functors as arguments to template functions
I'm looking for a way to pass function pointers, functors or lambdas to a template function g which uses the passed function's argument types. A minimal example for my problem is this function:
...
2
votes
1answer
106 views
visitor-like pattern for template objects
I’m trying to make a custom collision engine for academic purposes and i'm stuck on a general c++ programming issue
I already have all the geometries which work properly and for the scope of the ...
0
votes
1answer
36 views
Get Iterator Type from Range Type
Related: Template Specialization for each Range Type
Background
In C++11 the range-based for loop handles three kinds of "ranges," outlined here (link). I've quoted the relevant part below.
...
-1
votes
0answers
14 views
creating javascript drop down with text search box and other links using a button?
I have a site with several .PNG buttons in the header that point to various areas when clicked (using simple anchor links). One of them is a "Search Site" button that points to search.php (and it's ...
0
votes
1answer
12 views
Drupal adding a custom header per node
I have created the templeate html-landing.tpl.php and try to include it in a template with the following in my template.phpenter code here
function myfuntion_preprocess_html(&$variables, $hook) {
...
0
votes
1answer
10 views
mustache using .get(key) function for each object
I have some JSON models that look like:
{entries: [Entry{get: function}, Entry{get: function}]}
I then want to iterate over each entry and use the get function to get attributes. The part I am ...
1
vote
1answer
110 views
How does std::get work?
After trying to make a std::get<N>(std::tuple) method myself, I'm not so sure how it's implemented by compilers. I know std::tuple has a constructor like this,
tuple(Args&&... args);
...
2
votes
1answer
28 views
Adding a template parameter to API struct and maintaining backwards compatibility with partial specialization
I have a software component with an API I maintain with clients.
Below is a simplification of my problem.
This is part of the interface:
typedef unsigned int CustomerId;
template <typename ...
0
votes
0answers
41 views
Yet another use-case of template virtual function [duplicate]
I'm trying to implement something similar to the Visitor pattern.
The following isn't the full code of course, so you might wonder about the motivation of the code, but you can get the structure ...
1
vote
2answers
95 views
C++: pointers to data members or traits?
I'm practicing with some binary tree algorithms in C++ and trying to write as generic code as possible. In particular, I would like my functions (algorithms) be able to operate on any (to some extend, ...
0
votes
0answers
5 views
Creating List View of Android Component views
I want to create a list of tiles that will have data added at runtime to an Activity, I dont know beforehand how many tiles will need to be displayed, although the layout of each tile will be the ...
3
votes
3answers
44 views
Ignoring duplicate explicit instantiations of template classes in C++
If I have a class:
template <typename T>
class MyClass
{
// ...
};
and I explicitly instantiate it:
template class MyClass<int>;
template class MyClass<int>; // second time
I ...
1
vote
4answers
93 views
How to get type of a function by its name/pointer at compile-time for a template parameter default value?
Is there any way to get a type of a function by its name/pointer at compile time and use it as a default value for a template's parameter?
Consider the following code:
template <typename ...
1
vote
2answers
40 views
File template C++ Visual Studio 2012
Is it possible in Visual Studio, when creating a new file, producing automatically something like this:
// <filename>.<ext>
// Author: <name>
// Update: <date>
I'm ...
-1
votes
0answers
20 views
Dynamic template controls in knockout.js with add/remove functionality
Better if I explain this splitting.
The first one: I have to add and remove a line of controls (it's working)
The second one: Depending on a selected option in a control, I have to show different ...
0
votes
1answer
34 views
“undefined reference to std::_Rb_tree_const_iterator” when returning iterator
I'm trying to implement a simple std::find_if() like function to use (I'm not allowed to use it in my homework).
This is my implementation:
template<class Iterator, class Function>
Iterator ...
5
votes
6answers
204 views
Why do I need to specify the template argument type of a templated function here?
I have the following code:
template <typename T>
void f1( T t )
{
std::cout << "f1( " << t << " ) called." << endl;
}
template <typename T>
void f2( T t )
{
...
2
votes
2answers
45 views
std::initializer_list value as template parameter
I am trying to do something like this:
template<typename enumType,
std::initializer_list<enumType> values,
std::initializer_list<std::string> mappings>
struct ...
1
vote
3answers
45 views
fill static templated arrays with metaprogramming and variadic templates
I know that there are easier ways to do it, but
I would like to initialize at compilation time
the map from unrolled index of 2d array to its general format.
I would like to do this without ...
1
vote
1answer
66 views
define different instantiation of a templated static class member
I want to wrap some stuff in a simple templated class:
template <int dim>
class internal {
static unsigned int table[dim][dim];
};
And fill the table for different templated parameters:
...
0
votes
2answers
24 views
How to check element does exist after mustache templating
I have this mustache setup:
$.getJSON('data/data.json', function(data) {
var template = "<ul>{{#"+elements+"}}<li class=\"selector {{.}}\"></li>{{/"+elements+"}}</ul>";
...
0
votes
0answers
17 views
CodeIgniter Template Parser Variable Arrays?
So, my traditional method is using the template parser class instead of the standard view loading method. The only trouble with this is that variables can start to get messy after a while if more ...
0
votes
1answer
10 views
is there any java template engine benchmarks?
I'm looking for fastest and reliable java template engine. Is there any benchmarks for microseconds capable template engines?
I've found engines:
http://code.google.com/p/mist4j/wiki/USAGE
...
0
votes
0answers
30 views
In WPF: how to disable the animation when the button after be pressed?
I want no animation when button is pressed, but only the foreground and the background are changed, just like metro style. I'm so perplexed.
Edit:
I create a sample in Expression Blend 4.
There are ...
-2
votes
0answers
14 views
Joomla Template create using Gantry Framework
I am a web developer. So,i am learning how to develop joomla 3.0 template by using gantry framework. i use their official site for the learning.(http://www.gantry-framework.org/). but i couldn't ...
0
votes
1answer
16 views
XSLT increment recursion template
Please help me solve increment issue.
Is there a way to make an increment numbering list without using position(), number() or xpath expressions?
Here is the sample xml document that I want to ...
0
votes
0answers
16 views
How to use pyjade with brunch?
I want to make pyjade templates automatically compiled to a server-side template directory. Is there a way to do it with brunch?
pyjade https://github.com/SyrusAkbary/pyjade
brunch http://brunch.io
1
vote
1answer
67 views
Template Specialization for each Range Type
Background
In C++11 the range-based for loop handles three kinds of "ranges," outlined here (link). I've quoted the relevant part below.
Syntax
for (range_declaration : range_expression) ...
1
vote
1answer
20 views
XSL not copying all templates on each record
I'm a newbie to XSL and I am writing a Unix script so I hope you can help me out. My issue:
I have an XML which I need to parse to TXT, I'm using xsltproc to parse it But in an XML containing only 1 ...
0
votes
2answers
64 views
casting pointer of base class to unknown subclass possible somehow?
Scenario:
BaseClass* pointer = &subClassXObject; // subClassXObject is object of class subClassX
// which is derived from BaseClass and
...
0
votes
1answer
32 views
Syntax highlight javascript templates within <script type='text/html'> elements
In my Ruby on Rails templates I write underscore templates within <script type='text/html'> elements.
I'm using rails.vim and other plugins, but syntax highlighting and identation rules don't ...
12
votes
3answers
319 views
C++11 variadic templates: return tuple from variable list of vectors
I want to write something similar to python zip (http://docs.python.org/2/library/functions.html).
zip should take in a variable number of vectors of different types and it returns a vector
of tuples, ...
0
votes
1answer
41 views
Generic dispatcher class
I'm trying to write a class that does event (or whatever) dispatching in a generic way. The template parameters are the event listener's type, the event type to be passed as argument, and the function ...
0
votes
0answers
19 views
Prevent Disposal of View in Ember Router
I want to create an app, where i have a mainContainer and a sideBar, the sidebar and the mainContainer should have routes, without that one of the both clean up the other, when its route is called.
...
0
votes
0answers
24 views
VS error referencing class-local typedef as non-inline template argument
The following bit of code (a MWE) compiles in gcc 4.5.3 and above but does not compile in VS 2008 and 2010. Is it a known VS compiler bug? And are there any workarounds, other than to define func() ...
7
votes
1answer
94 views
Template specialization works with int and fails with double as a class
I hava a following simple template:
template<class T, T N>
bool VerifyGT(T value) {
return value > N;
}
bool (*test1)(int) = &VerifyGE< int, (int) 0>; // (1)
bool ...
0
votes
2answers
28 views
Raw html in mvc4 template
How to render raw html and prevent escaping in razor template if i am rendering it in this way:
var templateService = new TemplateService();
templateService.Parse(templateSource, model, new ...
1
vote
0answers
16 views
Making a new worksheet for every unique name on a list but I need the worksheet to be a copy of a template
I am a novice when it comes to making macros so I am in desperate need of help. I have two worksheets, one with data that will be updated with new data everyday and the other, a template that the data ...
1
vote
1answer
57 views
Best practices and tools for a big, extendible worklight enterprise application
I'm trying to optimize my company's application.
Tha architecture at this time is composed of different folders (inside common folder) for different sections of the app (for example Managing Bills, ...
1
vote
1answer
37 views
Use single variable to define mustache tag
Is there any option to set mustache tag with some define variables? Something like this:
Json
{
"color_set_01": [
"white", "black"
],
"color_set_02": [
"green", "red"
...


