The templates tag is used in multiple contexts: generic programming (especially C++), and data/document generation using template engines.
1
vote
2answers
25 views
Invalid use of incomplete type (SFINAE)
I am trying to use some SFINAE inside a templated struct. I reduced my problem to the following and could make this work:
template<bool mybool>
struct test {
void my_func();
};
...
-1
votes
1answer
40 views
Java Generics and C++ templates, which to be preferred if size matters?
If we have to choose to implement a solution either using C++ templates or Java Generics and ignoring the remaining languages issues (like the execution time), which of the them is to be preferred if ...
1
vote
5answers
44 views
How to use new operator with a template in C#
I'm trying to figure out how to use templates in C#. I wrote this:
public static List<TValue> deepCopyList<TValue>(List<TValue> src)
{
List<TValue> arr = new ...
-1
votes
2answers
44 views
Why my template function is not a valid match in this call?
i made the following code to convert number to string and reverse
in the commented part of code i want to make the function type a template
thinking that it will acquire the type according to context ...
2
votes
2answers
36 views
C++ template class static const variable member as map key gives undefined reference
I have a bunch of classes that have a static member that is an enum value. And I have a map somewhere else with this enum as key. Now if I use a template parameter in a fuction to access the map, I ...
-1
votes
0answers
19 views
better way to do loop in template?
i'm trying to create a function / or class to loop(reusable) and separate php code and html markup, but no idea how , can anyone point me?thanks and appreciate
my template.php
class Template{
...
0
votes
1answer
39 views
access to different data via c++ templates
I'm trying to make a manager, which provides access via templates to containers that store different types of data.
First of all, i made base manager class for storing different type of data
...
0
votes
1answer
29 views
Passing a template param through to another template class
I'm not a programmer, but actually a lawyer who has spent the last year or so learning C++. I'm doing this as a hobby. In any case, I've started experimenting with templates and just can't figure ...
0
votes
0answers
4 views
Passing Chrome Home Page with Chef
I'm trying to write a Chef Cookbook that turns a machine into a Kiosk (locks it down, auto-starts chrome in --kiosk mode).
For some reason, even when I use google-chrome ...
2
votes
1answer
18 views
Derive istringstream and implementing operator>>(string&)
I'm dealing with the following situation:
I'm using istringstream's operator>> to extract formatted data within template function.
Every thing work great except when the function is called with ...
-2
votes
0answers
27 views
Are there any tools that warn of embedded styles and scripts in HTML snippets?
I'm looking for a tool that I can use in our build process (or as a pre-commit hook) that will detected embedded JavaScript & Style attributes & tags, and generate a report of which line in ...
0
votes
2answers
42 views
Why am I seeing curly braces in this code?
I'm looking at someone else's HTML, and I see that all strings are output within curly braces.
Here's an example from the HTML document:
<td><div style="padding-top:10px; ...
0
votes
0answers
5 views
Jinja2 and ASPX
I have a jinja2 template, and I really need to somehow use it in ASPX.
Is there any template engine compatible with jinja2 for aspx? Or can I somehow convert the jinja2 templates to another engine ...
1
vote
0answers
26 views
From XML to template file- attributes starting with @
I'm stuck with sending xml to template engine in gae.
I'm using a suggested xmltodict here http://stackoverflow.com/a/10199714/27186
The problem is at attribute level:
...
0
votes
0answers
10 views
joomla 2.5 - bootstrap based template - elegant way to set up module width
I've created my own bootstrap based template with joomla 2.5.
I've planned two optional modules on a row inside a bar (which must hide if there are not modules inside it), but i want them to occupy ...
1
vote
1answer
39 views
Why template nontype parameter pointer and reference arguments needs to be global
Why arguments which are passed as nontype arguments should be global and not local? Isn't both created and allocated memory during compile time only?
In this case p is a const pointer, so it cannot ...
1
vote
1answer
42 views
Two variadic templates for a single function? Part 2
As continuation for: Two variadic templates for a single function?
I need a function with two variadic type lists.
Example:
template<typename... Types, typename... Args>
void ...
0
votes
0answers
21 views
Tried to import a javascript template into a rails app might have broken something in the asset pipeline
I'm trying to import a static javascript template into a basic rails app, so that I can then build more rails functionality with it (particularly with the backend).
Here is a window into some ...
0
votes
1answer
32 views
php replacing text in a template engine
we have a situation where we have a template file like the following
<?php
$tpl = '
<p>This is the header</p>
{if "IS VALID"}
<p>The value is valid
{if "IS ...
9
votes
1answer
200 views
Is it possible to legally overload a string literal and const char*?
Is it possible in C++11 to overload const char*'s and string literals (const char[])?
The idea is to avoid having to call strlen to find the string length when this length is known already.
This ...
4
votes
1answer
39 views
How to execute a Golang template when “{” or “}” are in the static part of the template?
My Problem is that, I want to build a letter generator, which first builds a latex-file from user input, and then compiles this via latex to PDF.
The template contains multiple lines like this:
...
0
votes
1answer
21 views
Defining compare function for fibonacci heap in boost
I need to use Fibonacci heap in my project and I am trying to use it from boost library. But I cannot figure out how to set up a user defined compare function for arbitrary data type. I need to ...
3
votes
1answer
38 views
template class constructor syntax
I am working on Michael Laszlo's book on computational geometry and have become confused with an unsual kind of template class constructors syntax he has used.
1st code
template<class T> class ...
0
votes
0answers
16 views
Underscore template
Just starting with underscore templating and hitting a road block. I am getting an object with nested arrays back from an api. structure is this:
data returned
$.when(results).done(function(data){
...
1
vote
0answers
21 views
prawn repeat template filling it with different content
I have a 4-page template for my PDF I would like to generate with prawn. I need to repeat this template in my pdf a number of times each time filling it with different content.
If I use:
...
0
votes
0answers
13 views
how to compile jquery added attributes and classes into directives
http://jsfiddle.net/x3azn/aPWg8/3/
I have a directive that generates attributes, which I want to compile and register as overlapping directives acting on this field.
How may I recompile the element ...
0
votes
2answers
26 views
Protected destructor of policy Classes in C++
I wrote the following dumb policy struct:
template
<typename T>
struct SuperLeague
{
public:
void printLeague(){std::cout << "SuperLegue" << std::endl;};
protected:
...
0
votes
0answers
48 views
C++ linker error default constructor with class template [duplicate]
I am getting a linker error: error LNK1120: 2 unresolved externals
Which usually means I am missing a header file.
I am having trouble finding it: School project on class templates, arrays and ...
1
vote
2answers
54 views
Templating on a variable number of tagged bases
I'm trying to build a utility that involves inheriting from the same base multiple times, which I'm doing by templating on an integer to make the bases distinct. Unfortunately I've found myself ...
0
votes
1answer
14 views
How to print some property of a model from collection in Handlebars Template?
I am using a Collection of Models in Backbone application. The requirement is to print only first models attribute in the render function using handlebars template. Is there a way to get first element ...
0
votes
1answer
19 views
How to deal with js templates duplication of server code?
I've noticed that I often duplicate razor code by making javascript templates for ajax loading. And then if I want to change serverside template I have to change js template too, what can I do to ...
0
votes
0answers
3 views
How to provision .aspx pages to custom web template
I have created a custom web template. I want to add 3 pages let say, page1, page2 and page3 to this custom web template. How I do this ?
0
votes
0answers
11 views
Kendo command template show/hide on condition
I know I can set values of regular data columns within a kendo grid like this:
columns: [
{ field: "Test", template: "#= Test? 'test successful' : 'test failed' #" }
]
However, I need to set a ...
9
votes
2answers
128 views
understanding of non-type template parameters
I have problem understanding the following paragraph Per C++11 Standard N3485 Section 14.1.7.
I think it is more important to understand the rationale instead of memorizing the facts.
A ...
0
votes
0answers
6 views
jquery ajax .load() vs using template with json response
I have been advised against using jQuery's .load() method
$('#result').load('ajax/test.html #result');
but I'm not really sure why.
Right now I have been using templates (mustache) to parse json ...
2
votes
1answer
54 views
Expansion of a variadic template function causes segmentation fault
I am studying the new C++11 feature about the Variadic Templates, so I wrote a fun template function:
template <typename T>
void fun(T& a) //Base to stop the recursion
{
std::cout ...
1
vote
2answers
64 views
Alternate between vectors and arrays using templates
Let's assume that I have a function that prints a set of numbers: 1, 2, 3, 4, 5 and these numbers can either be stored as an array, or, as a vector. In my current system I therefore have two functions ...
0
votes
1answer
49 views
templates and use class object function to compute
i have two vectors of objects bus and car. i need to create a templates to minus the distance travelled by using template. the distance minus will only be done within the same objects like bus1.dis - ...
0
votes
1answer
8 views
Synergy template won't run <script> code
While working on a project that uses the Synergy template from Themeforest (see http://themeforest.net/item/synergy-responsive-interactive-html-portfolio/3054099) I stumbled upon a problem.
In the ...
2
votes
1answer
38 views
Jinja2 Template - for loop
didn't find another post which has the similar problem, I'm trying to generate some checkboxes with flask and wtforms, at the moment I've got this piece of code:
<div class="control-group">
...
1
vote
1answer
42 views
friend method from a different namespace
I have the following situation. I have a class foo inside my own namespace my_lib:
namespace my_lib{
template<typename T>
class foo{
T data;
public:
// blah blah
};
}
I am trying to ...
1
vote
1answer
75 views
Cast a value using decltype, is it possible?
Is it possible to use decltype to cast a value?
For example let's say that we have the following template:
template<typename Container>
auto findInposition(Container& c,int ...
0
votes
0answers
6 views
Oxid: Way to develop Mail Template without order
i was wondering if there is any smart way to develop and edit email templates in oxid without triggering an order each time. I was thinking of something like a custom controller to access via browser ...
0
votes
1answer
32 views
templated function which accepts only string or arithmetic
I'm trying to get this to work:
template<class Type>
typename boost::enable_if< boost::mpl::or_<
boost::is_arithmetic<Type>,
is_string<Type> > >::type
get(const ...
6
votes
3answers
82 views
Class template can be instantiated without members?
The Wikipedia article says this:
instantiating a class template does not cause its member definitions to be instantiated.
I can't imagine any class in C++ being instantiated, whether from a ...
-3
votes
2answers
37 views
Template syntax error
EDIT: Fixed the error
This is my first time working with templates and am getting nasty syntax errors. I have no idea where the error is since the compiler is telling me I am missing a semi-colon, ...
-4
votes
2answers
28 views
Best non-CSS HTML template? [closed]
This is the situation:
For my AP US Government & Politics class, we have to create wiki pages for our "countries" in the school's Diplomacy Games. I kind of want to blow the other kids out of the ...
1
vote
1answer
21 views
How to use an existing android project as library/source to other android projects?
I am building series of android projects with almost the same classes, only some sources like images are different.
I want to make it like a source or library, so that I can create projects by only ...
1
vote
2answers
45 views
Template Conversion Failure with Lambda Function
Hy @ all,
we have to realize the following functioncall:
std::mt19937 engine;
color_table lut = create_random_color_map(engine);
The engine has to be exchangeable. We tried to implement it this ...
1
vote
2answers
117 views
c++ template custom warning [closed]
I'm working with C++11 and i have some code which is equivalent to
template<typename T1, typename T2>
auto add_func( const T1& lhs, const T2& rhs )
{
return lhs + rhs;
}
when I ...





