Tagged Questions
The function-templates tag has no wiki summary.
14
votes
4answers
837 views
Partial ordering with function template having undeduced context
While reading another question, i came to a problem with partial ordering, which i cut down to the following test-case
template<typename T>
struct Const { typedef void type; };
...
6
votes
2answers
306 views
Why function template cannot be partially specialized?
I know the langauge specification forbids partial specialization of function template.
I would like to know the rationale why it forbids it? Are they not useful?
template<typename T, typename ...
5
votes
1answer
110 views
Non-type function template parameters
I am reading C++ Templates Complete Guide and came across this non-type function template parameters code (I have added the main() and other parts except the function definition and call):
#include ...
5
votes
1answer
116 views
D function templates and type inference
Consider the following code:
module ftwr;
import std.regex;
import std.stdio;
import std.conv;
import std.traits;
S consume (S) (ref S data, Regex ! ( Unqual!(typeof(S.init[0])) ) rg)
{
writeln ...
5
votes
3answers
249 views
Friend functions of a class template
I have a class template Foo<T>.
I'd like to implement a non-member function Bar that takes two Foos and returns a Foo. I want Bar to be a non-member because it will be more natural for callers ...
4
votes
1answer
156 views
Why does Stroustrup's book demonstrate default function template arguments, which weren't allowed at the time?
Can anyone explain me why in chapter 13 of the third edition of C++ Programming Language, Stroustrup illustrates default parameters for function templates, although they are not supported by C++ (pre ...
4
votes
5answers
187 views
How can I write a function template that can accept either a stack or a queue?
I'm implementing four algorithms that are completely identical except for what data structure they use — two use priority_queue, one uses stack, and the last uses queue. They're relatively long, so ...
4
votes
4answers
101 views
Logical error in Function template
My professor has given me this assignment.
Implement a generic function called
Max, which takes 3 arguments of generic
type and returns maximum out of these
3. Implement a specialized ...
4
votes
3answers
215 views
Why is the compiler not selecting my function-template overload in the following example?
Given the following function templates:
#include <vector>
#include <utility>
struct Base { };
struct Derived : Base { };
// #1
template <typename T1, typename T2>
void f(const ...
3
votes
3answers
63 views
function template specialization failed?
#include <iostream>
template <class T>
void foo(T) {
std::cout << "foo(T)" << std::endl;
}
template <class T>
void foo(T*) { //#3
std::cout << "foo(T*)" ...
3
votes
3answers
71 views
specification of function templates
I would like to create a function template where the class T is limited to only derived classes of a special base class T_base. What is the efficient way to accomplish this? Thanks for your help!
3
votes
2answers
119 views
Creating my own custom JQuery templating engine?
I had a quick search in stackoverflow.. but couldn't find anything quite what I was after.
I am trying to understand/get some pointers on how to build my own VERY simple templating engine for jQuery.
...
3
votes
1answer
647 views
Templated Functions.. ERROR: template-id does not match any template declaration
I have written a function template and an explicitly specialized templated function which simply takes in 3 arguments and calculates the biggest among them and prints it.
The specialized function is ...
3
votes
6answers
4k views
Template function in C# - Return Type?
It seems that c# does not support c++ like templates. For example
template <class myType>
myType GetMax (myType a, myType b) {
return (a>b?a:b);
}
I want my function to have return type ...
3
votes
4answers
230 views
How to get an object of a unknown class with given classname
I am searching for a way to determine at runtime, which type of object should be alloced (based on a given class name, which is of type const char*).
Well the simplest way of course is to use loads ...
2
votes
2answers
61 views
Function template linking error
I've created a function template that allows me to get data for any data type but am receiving the error message on compilation:
Undefined symbols for architecture i386:
"bool ...
2
votes
1answer
112 views
“No matching function call” in template function
I keep getting the following error when trying to write a template function:
main.cpp|17|error: no matching function for call to ‘dotproduct(vector<float, 3u>&, vector<float, ...
2
votes
2answers
86 views
Why won't GCC let me use a template paramater for another template's parameter?
I have written the following template function for summing the contents of a std::vector object. It is in a file by itself called sum.cpp.
#include <vector>
template<typename T>
T ...
2
votes
2answers
151 views
Function template with return type T doesn't compile
The following code compiles fine:
template<typename T>
void f(const T &item) { return; }
int main()
{
f("const string literal");
}
Compilation succeeded at ideone : ...
2
votes
4answers
657 views
partial specialization of function templates
In the below code snippet,
template<typename T1>
void func(T1& t)
{
cout << "all" << endl;
}
template<typename T2>
void func(T2 &t)
{
cout << "float" ...
2
votes
2answers
242 views
How to select the right overloaded function template at compile-time?
I'm trying to understand how to select the right overloaded function template at compile-time, but the compiler is giving me a hard time. I can make it work, but I don't understand what is going on. ...
2
votes
3answers
195 views
Template argument deduction (using both explicit and implicit arguments in same call)
I have three template arguments to a function and am having troubles with (I think) the compiler deducing which template argument is which.
The template function is:
#include ...
2
votes
3answers
192 views
Where to put a member function template
An aspect of C++ that periodically frustrates me is deciding where templates fit between header files (traditionally describing the interface) and implemention (.cpp) files. Templates often need to go ...
2
votes
3answers
197 views
Determination of type in function template
I would like to ask you for an advice about function template. I have a function that adds some data into buffer. But I need also to add an information about data type into the buffer. The type of ...
2
votes
3answers
289 views
Function Templates - Explicit specialisation vs Global Functions (C++)
I know that Function Templates are used so as to make the functions portable and so that they could be used with any data types.
Also Explicit Specialization of templates is done if we have a more ...
2
votes
3answers
324 views
Is there a C++ equivalent to Java's Collection interface for STL container classes?
I would like to pass arbitrary container as an argument of function and iterate over it (no erasing nor pushing elements). Unfortunately it looks like there is no standard way of doing this.
First ...
2
votes
3answers
114 views
templates of functions
I'm told to create template of function , that will take 4 arguments :
pointer
reference
pointer to array
pointer to function
How to perform this task ? I was trying :
#include <iostream>
...
1
vote
1answer
98 views
How to modify each element of a parameter pack, and create a tuple from those?
I'm running into an issue with a variadic function template. I need to examine each element of a parameter pack, package the element, then stuff all the packaged elements into a tuple and return ...
1
vote
2answers
148 views
Can I use (boost) bind with a function template?
Is it possible to bind arguments to a function template with (boost) bind?
// Define a template function (just a silly example)
template<typename ARG1, typename ARG2>
ARG1 FCall2Templ(ARG1 ...
1
vote
4answers
171 views
C++ template specialization on functions
I'm playing around with template specialization, and I've found an issue I can't seem to solve; this is my code:
template<int length, typename T>
void test(T* array)
{
...
...
1
vote
1answer
124 views
ambiguous error: template C++
I've tried almost everything imaginable (apart from the right thing of course), but still can't see why I'm getting an ambiguous error. I am fairly certain it's something really silly but I just can't ...
1
vote
2answers
149 views
C++ unexplained variations in template function matching with enums
I have the following code containing a template function. When I am calling this function with second parameter being an enum: in some cases it finds the template specialization and in some cases it ...
1
vote
3answers
246 views
Clarification on template function specialization
I want to create a calculator
template < typename T >
class Calculator
{
public :
Calculator ( void );
~Calculator ( void );
T add(T a, T b)
{
return ( a + b ) ;
...
1
vote
1answer
150 views
How to use class templates as function arguments?
I have a class declared along the lines of
template<int a, int b>
class C {
public:
array[a][b];
}
and I want to use it as argument in a function like this:
bool DoSomeTests(C &c1, C ...
1
vote
4answers
137 views
class T in c++ (your definition)
The one advantage of using class T in c++ is to reduce the time to redefine data types in a function, if those data types are defined in other function, for example, in int main.
template <class ...
1
vote
1answer
137 views
Using typedefs from a template class in a template (non-member) function
The following fails to compile (with gcc 4.2.1 on Linux, anyway):
template< typename T >
class Foo
{
public:
typedef int FooType;
};
void
ordinary()
{
Foo< int >::FooType bar = 0;
...
1
vote
3answers
119 views
What is the preferred design of a template function that requires a default parameter value?
I'm currently working on cleaning up an API full of function templates, and had a strong desire to write the following code.
template <typename T, typename U, typename V>
void doWork(const ...
0
votes
2answers
101 views
How to make universal class method?
Is there any way to make a class template function?
So for example
//Warning: this is conceptual pseudo-code
template<typename TemplateClass, TemplateItem>
TemplateClass ...
0
votes
2answers
65 views
How to pass normal param as well as template param in a template function in C++?
I have a template function (as follows) in a namespace called myNamespace:
template <typename setX>
void getRandomItems(NaturalNumber size, setX &random, setX &items)
{
assert(size ...
0
votes
1answer
294 views
Inconsistent error using template functions
(This question has bounty for anyone willing to take a shot)
Hi I have defined overloading template function with container class as arguments
(Here CntrlCls1 = RWTValOrderedVector and CntrlCls2 = ...
0
votes
2answers
622 views
error C2955: 'ListRemake' : use of class template requires template argument list
template <class T>
class ListRemake
{
...
friend ostream& operator << (ostream& out, const ListRemake& obj);
};
template <class T>
ostream& operator << ...
0
votes
1answer
126 views
Error in template function (using Boost.Tuples)
#include <list>
#include <boost/tuple/tuple.hpp>
template<class InputIterator>
void f(InputIterator it)
{
typedef boost::tuple<typename InputIterator::value_type, int> ...
0
votes
2answers
212 views
Template meta-programming with member function pointers?
Is it possible to use member function pointers with template meta-programming? Such as:
class Connection{
public:
string getName() const;
string getAlias() const;
//more stuff
};
typedef ...
0
votes
2answers
147 views
Function template overloading: link error
I'm trying to overload a "display" method as follows:
template <typename T> void imShow(T* img, int ImgW, int ImgH);
template <typename T1, typename T2> void imShow(T1* img1, T2* img2, ...
0
votes
2answers
1k views
C++ Function Pointer issue
For some reason trying to pass a pointer to this function to a varadic function produces the following error:
1>c:\... : error C2664: 'PyArg_ParseTuple' : cannot convert parameter 3 from 'int ...