5
votes
2answers
81 views

C++ Function passed as Template Argument vs Parameter

In C++, there are two ways of passing a function into another function that seem equivalent. #include <iostream> int add1(int i){ return i+1; } int add2(int i){ return i+2; } template <int ...
1
vote
1answer
80 views

Exception being raised as I enter into function before code can be executed

As always, I'm probably missing something obvious here. I can't post the entire source code, because it's work-related but I have a templated Matrix class with a mulMM (multiply Matrix by Matrix) ...
0
votes
4answers
45 views

Template Specialization or Function Overloading

I know there are other questions like this but they are not very clear. Now I feel as though this is a stupid question because I'm sure I already have the answer but let me ask anyways. So I ...
1
vote
1answer
80 views

Template function to return different types

Is it possible to have a method return values of different types with the type determined at run time? I am writing something that will encode and decode using different ciphers. Each cipher has a ...
2
votes
1answer
52 views

function Template with explicit type names

I've been reading some pages about templates. I see that, templates are used like this: template <typename T> T func(T a) {...} So it's for providing flexibility to use the same code for ...
-1
votes
3answers
88 views

Accessing variables in a template that is a vector of a custom data type with multiple variables

How do I access the variables itemtype and total within the increment function? The code I have below gives me errors as follows Counter2.h: In member function ‘int Counter::increment(T)’: ...
-1
votes
2answers
43 views

C++ template return value

I need to implement a queue that serves for any datatype T using template, and one function I need to implement is called T getFirst() which returns the value of the first node my original approach ...
0
votes
1answer
32 views

requiring template files with classes

Hi I'm trying to make my own simple template system kind of thing and I'm just learning about classes so I'm trying to do it with classes and objects. it works if i put this in top of every document: ...
0
votes
2answers
143 views

c++ - <unresolved overloaded function type>

In my class called Mat, I want to have a function, which takes another function as a parameter. Right now I got these 4 functions, but I get an error in when calling print(). The second line gives me ...
3
votes
2answers
251 views

template argument deduction/substitution failed, when using std::function and std::bind

I have a compile error when using std::function in a templated member function, the following code is a simple example: #include <functional> #include <memory> using std::function; using ...
-3
votes
1answer
41 views

Why do all of the member functions have to be template functions in a template class? [closed]

When you have a template class, why do all of the member functions have to be template functions, even if that member function does not access one of the template member variables?
3
votes
1answer
139 views

Generic member function pointer as template parameter inside another class

My question is similar to this. And 'Karrek SB's answer actually helped me somewhat. I have these classes: Base.h: class Base{ public: Base(){} virtual ~Base(){} virtual void init() = 0; }; ...
2
votes
3answers
90 views

C++ Function that passes any function with any number of arguments

This may not be possible in c++, but I've search online and found nothing that seems to work. I don't know how this works, but if I pass a function "A" to another function "B", I can execute function ...
1
vote
3answers
64 views

c++ template function

I have following code: void myfunc() { } template <typename T> void check() { } template <typename T> void checkT (T) { check<T>(); } and so if I have in main ...
0
votes
3answers
48 views

selection of c template function parameter type

I am new to c++ templates. I am writing a set of functions that can manipulate two different template classes. One needs to always be passed by value, the other must be passed by reference because it ...
1
vote
2answers
99 views

Is it possible or not to use a native php function in Twig?

I am a newbie on Symfony. How can I use a native php function in a twig template? For example I want to use the function chr in a loop like this: {% for directory in directories %} ...
0
votes
2answers
96 views

Global values inside template function not changing [c++]

I need help with a project. Basically I need to measure the clock ticks for some sorting algorithms. Since they all use comparison and sometimes, swapping functions, I designed them to accept these as ...
2
votes
3answers
121 views

C++ call method passed as argument

I have a Session class that defines multiple Send methods that takes different arguments. For example: class Session { public: void SendInt(int i); void SendTwoInts(int i1, int i2); void ...
0
votes
0answers
11 views

can operators be used in function templates?

Is it possible to use operators in function templates? If so can someone please give me a simple example of this code written in c++. Also I wanted to know what exactly is a template class? Thanks a ...
0
votes
2answers
91 views

Nested Template typedef - type definition

I am trying to compile the code below. file Class12.h template <class T1> class class1 { public: typedef T1 Type1; void class1Method(); }; template <class T1> void ...
0
votes
1answer
39 views

Render data on two templates from one function Django

Hi i need to render the data on two templates from one function my code is def stylepoints(request): a=Product.objects.all()[:3] cursor = connection.cursor() try: ...
5
votes
3answers
128 views

C++ function vs template with an integer parameter?

Reading the Wikibook Optimizing C++, in this paragraph there is the following suggestion: If an integer value is a constant in the application code, but is a variable in library code, make it a ...
2
votes
2answers
183 views

Generic programming in Go?

I know that Go doesn't support templates or overloaded functions, but I'm wondering if there's any way to do some kind of generic programming anyway? I have many functions such as these: func (this ...
0
votes
2answers
72 views

How to call a Model function in Sencha Template

I have a client model defined as: Ext.define('app.model.Client', { extend: 'Ext.data.Model', alias: 'model.clientmodel', fields: [ { name: 'Firstname', ...
7
votes
1answer
347 views

Why does C++11 not support 'std::function<void(int, …)>'?

#include <functional> void f1(int) {} void f2(int, ...) {} int main() { std::function<void(int)> g1 = f1; // OK. std::function<void(int, ...)> g2 = f2; // Error! Not ...
0
votes
1answer
42 views

Templated Insert at End Function

I am trying to create a templated function that will insert a value at the end of an array, however I keep running into a seg fault no matter what I try to do. Any advice would be greatly appreciated. ...
0
votes
0answers
31 views

C++ static template function in non template class [duplicate]

I'm trying to create a static template function inside a non-template class, here's an example: utils.h class Utils { public: template<class T> static T **alloc_2d_array(int x, int y); }; ...
0
votes
2answers
79 views

C++ Creating function map using templates and inheritance

I am trying to create a generic function map using templates.The idea is to inherit from this generic templated class with a specific function pointer type. I can register a function in the global ...
0
votes
2answers
57 views

Returning a different data type from function using a template

I am trying to create a function to parse XML and return either a std::string or int using templates. I have come up with the following code: template <class T> T queryXml(char *str) { if ...
6
votes
2answers
163 views

C++ function template argument with templated type struct woes

This code unexplicably doesn't compile: struct sometype { template <typename T> T* get() { return nullptr; } }; template <typename T> struct anothertype { #if 1 template ...
1
vote
1answer
134 views

implicit instantiation of undefined template 'class'

When trying to offer functions for const and non-const template arguments in my library I came across a strange problem. The following source code is a minimal example phenomenon: #include ...
6
votes
5answers
230 views

How to make a function accept arbitrary number of arguments not using f(…)?

A piece of code is worth a thousand words: int main() { // All of the following calls return true: AreEqual(1, 1); AreEqual(1, 1, 1); AreEqual(1, 1, 1, 1); AreEqual(1, 1, 1, 1, ...
2
votes
1answer
66 views

C++ templates implicitly use

I have defined such function: template<typename T> void SwapMe(T *first, T *second) { T tmp = *first; *first = *second; *second = tmp; } Then using it like so: ...
3
votes
4answers
163 views

C++ variable arguments

I have a class with a state machine, and want to have a single point of entry to pass events to the state machine. The event is accompanied with event specific data, which I then want to dispatch to ...
1
vote
1answer
77 views

Pass a function as a parameter with templates in C++?

The function i am writing below is made to time how long it takes to process a function. // return type for func(pointer to func)(parameters for func), container eg.vector clock_t ...
3
votes
1answer
242 views

Pass Void as Function Parameter

I have a function which should accept a parameter of any type. Therefore I use templates. template <typename T> void Function(T Parameter); What the function does is to call a function. In my ...
0
votes
3answers
122 views

Container of Functions with different Parameters

Is there a way to store void functions with different parameters in a vector? The number of parameters is always one, only the type differs. The parameter type can be a default type like int, a ...
1
vote
1answer
220 views

Why is this std::bind not converted to std::function?

Why is the nested std::bind in the below code not implicitly converted to an std::function<void()> by any of the major compilers (VS2010/2012, gcc, clang)? Is this standard behavior, or a bug? ...
0
votes
1answer
66 views

Using Template Defined Variables in Function Calls in C++

I have a function that I am passing in a variable for; the variable, however, is a template variable. I do not know the specifics on how I am supposed to create a function with a template parameter. I ...
1
vote
1answer
277 views

Function pointer to multiple argument C++11 std::function: Templating GetProcAddress

I am trying to return a function instance from a FARPROC address given by another function that calls GetProcAddress. Came up with an interesting issue. Here's the function: template<class FT> ...
0
votes
2answers
138 views

Sorting List container using template function

I have a header, which consists of different template functions #include <cmath> template<class T> bool lessThan(T x, T y) { return (x < y); } template<class T> bool ...
0
votes
1answer
119 views

pure virtual template functions in a template class

So my instructor handed out some code that I believe does not work at all and I want to get some clarification on it. He used this in his hand out notes (it implies that this is correct). ...
4
votes
3answers
255 views

How to convert a lambda to an std::function using templates

Basically, what I want to be able to do is take a lambda with any number of any type of parameters and convert it to an std::function. I've tried the following and neither method works. ...
0
votes
2answers
64 views

django: call function from views in template

i have a function in views.py , for example something like this : def get_base_content(): footer = SiteContent.objects.get(pk=1) return { "footer" : footer, } how can i call this ...
1
vote
3answers
90 views

Function template specialization with a template class [duplicate]

Possible Duplicate: partial specialization of function template I can't find anywhere a solution for my problem, because if I search with the keywords I come up with would give me solutions ...
1
vote
2answers
130 views

C++ templates with multiple typenames

I'm learning about a technique used to find the number of elements in an array (so that I can hopefully starting writing sorting algorithms without requiring the length of the array to be passed with ...
1
vote
3answers
53 views

Templating HTML using PHP

I'm trying to figure out what is the best way to clone/template HTML that is frequently repeated in my web app. For example, I have a voting <form> (see below) that needs to be located on ...
0
votes
2answers
97 views

Pass specialized function pointers in c++

I am working a with a c library inside my c++ code. Their API requires me passing a certain function pointer with a given signature. Let's say it's something like the following: typedef int ...
1
vote
0answers
103 views

Trigger function from controller in template Prestashop

how can I from template trigger specific function in controller. Lets say I have a search module and after user click on button search I would like to perform some actions (if any is wrong, please get ...
1
vote
1answer
209 views

Passing functors and function pointers interchangeably using a templated method in C++ [closed]

I currently have a templated class, with a templated method. Works great with functors, but having trouble compiling for functions. Foo.h template <typename T> class Foo { public: // ...

1 2 3 4 5