Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
795 views

Why don't the Haskell standard libraries make more use of polymorphism?

I'm in the process of learning Haskell, and type classes seem like a powerful way to make type-safe polymorphic functions. But a lot of the Haskell Prelude functions don't use them. More ...
17
votes
6answers
1k views

C++ vs. D , Ada and Eiffel (horrible error messages with templates)

One of the problems of C++ are horrible error messages that we are getting from code which intensively uses templates and template metaprogramming. The concepts are designed to solve this problem, ...
15
votes
4answers
461 views

What is Haskell's Data.Typeable?

I can't find a tutorial or a good description anywhere. Can someone give me some pointers?
15
votes
9answers
2k views

'Multipurpose' linked list implementation in pure C

( if you get easily bored reading long posts, you can focus on the bold parts ) Hello all! This is not exactly a technical question, since I know C kind of enough to do the things I need to (I mean, ...
14
votes
10answers
882 views

When/Why ( if ever ) should i think about doing Generic Programming/Meta Programming

IMHO to me OOPS, design patterns make sense and i have been able to apply them practically. But when it comes to "generic programming /meta programming" of the Modern C++ kind, i am left confused. ...
13
votes
4answers
691 views

Can someone explain what does <? super T> mean and when should it be used and how this construction should cooperate with <T> and <? extends T>?

I'm using generics rather long time but I've never used construction like List<? super T>. What does it mean? How to use it? How does it look after erasure? I also wonder: is it something ...
12
votes
1answer
541 views

Folding over a polymorphic list in Haskell

I have a collection of records spread across a number of types in a large Haskell application that reference each other. All of the types involved implement a common typeclass. The typeclass contains ...
12
votes
1answer
670 views

Scrap Your Boilerplate in f#

I've used the Scrap Your Boilerplate and Uniplate libraries in the Haskell programming language, and I would find that form of generic programming over discriminated unions to be really useful. Is ...
12
votes
17answers
2k views

What undergraduate computer science course best prepares programmers for the workplace?

The idea here is to get better programmers right out of college. I think I would have to go with Algorithms, it's not exactly something you can pick up on your own very easily and I think it enables ...
11
votes
5answers
329 views

Generic/template programming best practices: To limit types, or not to limit types

That is my question. I'm just curious what the consensus is on limiting the types that can be passed in to a generic function or class. I thought I had read at some point, that if you're doing ...
11
votes
2answers
395 views

Datatype-generic programming libraries for Scala

I'm looking for a Scala library allowing for datatype-generic programming (like Scrap Your Boilerplate, for example). A list of libraries with appropriate links and short descriptions for each one ...
10
votes
2answers
428 views

What are concepts?

I've heard all this new (on /.) about C++0x not having concepts anymore, but I have no idea what they are? Can someone explain to me?
9
votes
1answer
167 views

Avoiding boilerplate when dealing with many unrelated types

I'm writing code that deals with values from Language.Exts.Annotated.Syntax, where a variety of types are defined that mirror the structure of a Haskell module: data Module l = ... data Decl l = ... ...
8
votes
4answers
180 views

Inheritance & virtual functions Vs Generic Programming

I need to Understand that whether really Inheritance & virtual functions not necessary in C++ and one can achieve everything using Generic programming. This came from Alexander Stepanov and ...
8
votes
3answers
250 views

generic implementation in C

Hii , While I was implementing some of the programs for the class assignment, it just struck me how it would be to implement the same in a generic fashion using C. I do know that we need to make use ...
8
votes
12answers
909 views

Where do you find templates useful?

At my workplace, we tend to use iostream, string, vector, map, and the odd algorithm or two. We haven't actually found many situations where template techniques were a best solution to a problem. ...
7
votes
4answers
100 views

Avoiding Java Type Erasure

Is there a way one could avoid type erasure and get access to a type parameter? public class Foo<T extends Enum<?> & Bar> { public Foo() { // access the template class ...
7
votes
2answers
176 views

D Analogue to C++ member-function-pointers, not necessarily delegates

I have been learning D, and am in particular very excited for it's Generic programming capabilities. Delegates are wonderful, and apparently they have completely replaced member-function-pointers, so ...
7
votes
5answers
93 views

what could this generic class declaration could mean?

I know this isn't a good question to ask and I might get cursed to ask it but I cannot find any place to get help on this question Below is a Generic class that appeared in my interview question ...
7
votes
3answers
196 views

Why were concepts (generic programming) conceived when we already had classes and interfaces?

Also on programmers.stackexchange.com: I understand that STL concepts had to exist, and that it would be silly to call them "classes" or "interfaces" when in fact they're only documented (human) ...
7
votes
2answers
130 views

Which way is better for creating type-agnostic structures in C?

I'm trying to write some generic structures. Essentially, what I need for my purpose is C++ templates, but since I'm writing in C, templates are out of consideration. Currently I'm considering 2 ways ...
7
votes
2answers
155 views

Tag dispatch versus static methods on partially specialised classes

Suppose I want to write a generic function void f<T>(), which does one thing if T is a POD type and another thing if T is non-POD (or any other arbitrary predicate). One way to achieve this ...
7
votes
7answers
346 views

What do you feel is over-generalization?

Having spent some time playing around in Haskell and other functional languages, I've come to appreciate the simplicity of design that comes from describing problems in general terms. While many ...
6
votes
6answers
232 views

How to implement a generic macro in C?

FUNC(param); When param is char *,dispatch to func_string. when it's int,dispatch to func_int I think there may be a solution to this,as variable types are known at compile time..
6
votes
11answers
1k views

What are the disadvantages of using templates?

Some of the disadvantages would be its syntax is complex compiler generates extra code
6
votes
3answers
184 views

Any suggestion for doing an arbitrary operation using given arguments of arbitrary types?

Basically i just want to do an arbitrary operation using given arguments of arbitrary types. Argument type base class is Var, and Operation is base class of the operation that will executed for given ...
6
votes
2answers
364 views

Scala: Implementing a subtype of Numeric[T]

How does one go about implementing a subtype of Numeric[T]? I have been looking for at guide on this but haven't found any. Example of subtypes could be Rational or Complex? Thanks in advance Troels
6
votes
3answers
115 views

In the generic programming/TMP world what exactly is a model / a policy and a “concept”?

I'd like to know the precise yet succinct definitions of these three concepts in one place. The quality of the answer should depend on the following two points. Show a simple code snippet to show ...
5
votes
4answers
173 views

What kinds of types does qsort not work for in C++?

std::sort swaps elements by using std::swap, which in turn uses the copy constructor and assignment operators, guaranteeing that you get correct semantics when exchanging the values. qsort swaps ...
5
votes
2answers
148 views

Using Typeable to partially apply function at run-time (any time types match)

Generic programming time! If I have a function: f :: a1 -> a2 -> a3 -> ... -> an and a value v :: aX -- where 1 <= x < n Without knowing at compile time which of the ...
5
votes
5answers
411 views

Library for tree search for combinatorial optimization problems

I notice that some of the "hard" combinatorial problems I come across can be cast in terms of some type of tree search like alpha-beta pruning, or beam search, or a similar algorithm. However, ...
5
votes
3answers
288 views

Template function as a template argument

I've just got confused how to implement something in a generic way in C++. It's a bit convoluted, so let me explain step by step. Consider such code: void a(int) { // do something } void ...
5
votes
4answers
625 views

Traversing and filtering a tree in haskell

I am pretty new to Haskell (still working on totally understanding monads). I have a problem where I have a tree like structure type Tree = [DataA] data DataA = DataA1 [DataB] | ...
4
votes
4answers
91 views

Recursive generic function used as a predicate, compilation failure

I am writing a function to compare the contents of two lists. The order of the elements don't matter, so I sort them before I compare. The lists can be of normal types list<int>, but also be ...
4
votes
2answers
143 views

static_assert in a function declaration

I've got quite a simple function using static_assert. The trouble is that I want to static_assert on behaviour involved in the function declaration- inferring the return type, specifically. There ...
4
votes
3answers
151 views

Given a number K and a set of sorted numbers. Find if there is any number in the set which divides

Given a number k and a set of sorted numbers. Find if there is any number in the set which divides this number. For example if k = 8, and set is { 3, 4, 5}, 4 will divide 8. 4 is the answer. Worst ...
4
votes
1answer
139 views

Does this higher order function have a name?

I see this pattern everywhere in my code, and in libraries, yet there appears to be no name or abstraction of it that I can find anywhere. Example (pseudocode) T foo( T x, void f(T&) ) { T y ...
4
votes
2answers
185 views

Refactoring a “dumb” function into generic STL-style with iterators to containers

I've managed to wrap my head around some of C++'s functional capacities (for_each, mapping functions, using iterators...) but the construction of the templates and function argument lists for taking ...
4
votes
4answers
226 views

Using pointers, references, handles to generic datatypes, as generic and flexible as possible

In my application I have lots of different data types, e.g. Car, Bicycle, Person, ... (they're actually other data types, but this is just for the example). Since I also have quite some 'generic' ...
4
votes
1answer
386 views

Polymorphism in Delphi Generics

type TParent=class public member1:Integer; end; TChild=class(TParent) public member2:Integer; end; TGArray<T: TParent>=class public function test:T; ...
4
votes
10answers
3k views

Developing for Mac OS X, on Windows?

Well, simple situation. I happen to be a software engineer who uses mostly Delphi and C# for software development. Delphi is great for desktop applications while C# is ideal combined with ASP.NET for ...
3
votes
5answers
143 views

How can I subtract two generic objects (T - T) in C# (Example: DateTime - DateTime)?

I wrote a Generic Class: public class Interval<T> where T : IComparable // for checking that Start < End { public T Start { get; set; } public T End { get; set; } ... } And I ...
3
votes
2answers
240 views

void return value from a function used as input to a templated function is seen as a parameter

Say you have some target class with some methods on it: class Subject { public: void voidReturn() { std::cout<<__FUNCTION__<<std::endl; } int intReturn() { ...
3
votes
3answers
879 views

C# Extension Method on Type With Generic Type Argument

I’m looking at ways to improve the consistency, brevity, and readability of some code in the application I’m working on. The starting code looked something like this: ...
3
votes
2answers
223 views

Function templates for arbitrary STL containers containing arbitrary types

I have an arbitrary STL container C, which contains elements of an arbitrary type T. I want to create an std::vector that has a copy of all the elements. What is the cleanest way to do this? ...
3
votes
4answers
221 views

Holding a generic type's instance - C++

I have a tree_node class and a tree class. template<typename T> class tree_node { public: tree_node(const std::string& key_, const T& value_) : key(key_), value(value_) { ...
3
votes
5answers
1k views

Java generic class and wildcards

I've got a problem with generic classes in java. I've got this class: public abstract class MyMotherClass<C extends AbstractItem> { private C item; public void setItem(C item) { ...
3
votes
2answers
296 views

Ambiguous type variable

Related to my earlier question on traversing data structures, I'm having a problem making my code generic when I use it along with the uniplate package. I'm dealing with the data structures in the ...
3
votes
1answer
114 views

handling amorphous subsystems in formal software design

People like Alexander Stepanov and Sean Parent vote for a formal and abstract approach on software design. The idea is to break complex systems down into a directed acyclic graph and hide cyclic ...
3
votes
5answers
743 views

Inferring the return type of a function or functor in C++

I need to use a function's/functor's returned value without knowing what type it is (that is, as a template). While I could pass it over to a second function without a problem: template <typename ...

1 2 3