Tagged Questions

0
votes
2answers
53 views

Checking for list membership using the STL and a unary function adapted functor

I've attempted to write a brief utility functor that takes two std::pair items and tests for their equality, but disregarding the ordering of the elements. Additionally (and this i …
1
vote
4answers
97 views

Good introduction to generics

Being compelled by the advantages I'm looking for a way to integrate generic programming into my current programming style. I would like to use generics in C# but can't find any go …
0
votes
2answers
45 views

DataTemplate.DataType=Collection<Entity> ?

Is there a way to create a data template that handles a list of items? I have Contact.Phones (EntityCollection) and I want the data template to handle the list - add remove edit e …
0
votes
3answers
93 views

templates problem (’typename’ as not template function parameter)

Actually I've a problem with compiling some library with intel compiler. This same library has been compiled properly with g++. Problem is caused by templates. What I'd like to u …
2
votes
1answer
65 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 a …
0
votes
8answers
252 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 combin …
1
vote
2answers
251 views

Generic Methods in C#

Generic Methods in general are new to me. Need a method that returns a Collection of a generic type, but also takes a collection of the same generic type and takes Expression&lt …
9
votes
9answers
818 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 …
4
votes
17answers
637 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 …
2
votes
5answers
124 views

.NET Generic List<T> Problem, works by design, need work around. Add value instead of reference

I have a List<T> and I need to avoid the behavior I'm about to outline: // assume cls and numberToAdd are parameters passed in. int pos = numberToAdd; List<My …
7
votes
2answers
254 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?
2
votes
4answers
203 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: t …
10
votes
9answers
407 views

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

Hi there 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 …
0
votes
5answers
274 views

C++ - Generic programming - Type selection

The following fragment returns the next highest power of two for an (assumed unsigned) integer of type T. It does this by shifting the bits repeatedly. For all intents and purpos …
0
votes
5answers
784 views

How do you do generic programming in Haskell?

Coming from C++, I find generic programming indispensable. I wonder how people approach that in Haskell? Say how do write generic swap function in Haskell? Is there an equivalent …

1 2 next
15 30 50 per page