The generic-programming tag has no wiki summary.
2
votes
0answers
102 views
Couldn't match kind `*' against `#'
What the heck is going on here:
"Couldn't match kind `*' against `#'"
I was trying the following in GHCi using TemplateHaskell (ghci -XTemplateHaskell)
$(reify ''Show >>= dataToExpQ (const ...
0
votes
3answers
73 views
C++ Losing Template Data
I don't consider myself all that knowledgeable in C++ but I'm having a hard time with this concept. So I have a class the holds some template datatype and a double. I want the m_data variable to be ...
3
votes
2answers
124 views
Haskell's Scrap Your Boilerplate (SYB) - applying transformation only once instead of everywhere
What's the best way to apply a transformation to a tree only once instead of everywhere using SYB? For instance, in the following simplified expression, there are several instances of Var "x", and I ...
0
votes
2answers
38 views
Strange parameterized method
public class StrangeParamMethod {
static void f(ArrayList<String> list){};
public static void main(String... args){
ArrayList<String> list = new ...
0
votes
1answer
29 views
Generating lambda expression - Type conversion Error
I have a generic method that filters a list of entities, filtering is done by generating lambda expressions:
protected object initFilters<TEntity>(string targetEntity, List<SearchItem> ...
0
votes
1answer
61 views
template of callable (callback) as class template parameter
I would like to achieve something like this:
template<class IT>
size_t foo(IT begin,IT end) {return end-begin;}
template<template (class) class FOO>
class BAR
{
public:
...
0
votes
2answers
67 views
bad operand types for binary operator '+' [duplicate]
I am working on creating a generic class to manipulate Matrices. But here is the problem: When I implement the addition operation, I get a "bad operand types for binary operator '+'"
It says that:
...
1
vote
2answers
63 views
compile time assertion in c++
I am reading a compile time assert, after searching online I got some code which I didn't understand.
template <bool> struct CompileAssert {};
#define COMPILE_ASSERT(expr, msg) \
typedef ...
3
votes
2answers
67 views
Deep Copy of a Generic Type in Java
How does deep copies (clones) of generic types T, E work in Java? Is it possible?
E oldItem;
E newItem = olditem.clone(); // does not work
1
vote
0answers
13 views
Need an unmanaged C++ function which can generically invoke many unmanaged DLLs and their functions on behalf of the caller
In unmanaged C++ code on a 32-bit or 64-bit platform, suppose I want to provide an API function called CallDLLFunction which will invoke a DLL function on behalf of its caller. This API function will ...
2
votes
1answer
48 views
_Generic and functions with several parameters
I was reading this C11's _Generic example on Wikipedia:
#define cbrt(X) _Generic((X), long double: cbrtl, \
default: cbrt, \
float: cbrtf)(X)
It ...
-4
votes
1answer
32 views
How I can call generic method <Item> [closed]
I have some problem in my code and I need to help me thanks
so I create API of RandomizedQueue with array and when I call method
public static <Item> void enqueue(Item item)
{
if(item ...
2
votes
1answer
38 views
What is the inverse notion of “refinement”
In the world of generic programing the notion of refinement is very common. In particular given a concept C1, then we say that a concept C2 refines C1 if it provides all the functionalities of C1 and ...
2
votes
2answers
42 views
Restrict creation of children forms using generics in C#
After testing for a bit, I came up with the following solution to avoid (from the MdiParent Form) the creation of more than one instance of children forms.
For the first form, the code came up as:
...
1
vote
1answer
61 views
Policy based design: how to customize the Host structure in a proper way?
I have a bunch of algorithms and collections, and I am using a Policy Based design (see the book Modern C++ Design) to deal with arbitrary combinatorial complexity. This is great, but in order to ...
0
votes
0answers
63 views
Flexible Data Messaging in a component oriented system
I'm creating a Component orientated system for a small game I'm developing. The basic structure is as follows: Every object in the game is composed of a "GameEntity"; a container holding a vector of ...
2
votes
2answers
112 views
What is the following function returning ?
int fn(unsigned int x)
{
int count = 0 ;
for(; x!=0; x&=(x-1))
count ++;
return count;
}
I tried it out in the complier but couldn't figure out what is happening. I think it's something to ...
3
votes
2answers
141 views
Constructor for nested initializer lists
Is it possible to have a generic constructor that takes any type of initializer list, even if this has nested lists within?
Say you have the following partial template specialization for a class that ...
2
votes
1answer
53 views
Is it possible to use policy based design together with automated testing?
I am developing a numerical simulations library which is centred around a single collection of data operated on by different computational algorithms. The algorithms are complex, they have different ...
2
votes
1answer
53 views
Calculate changeset for object
I'm writing a windows store app that receives an object (custom type that I created) from a server, lets the user edit the object and then submits a "changeset" back to the server. This changeset is ...
0
votes
3answers
122 views
How do I determine the number of parameters of a std::function?
I have the following problem. Say you want to write a generic function that can take a lambda expression. I understand that if the parameter is of type std::function, then I could not only use ...
0
votes
1answer
62 views
how to create a program that generate a source code programatically and compile it and execute after successfull compilation
How to create a program (Parent Program) that creates .cs(generate source code programatically from a Parent Program) file and compile it and execute after successfull compilation and communicate ...
4
votes
1answer
157 views
Largest Number < x? [closed]
In C++, let's say I have a number x of type T which can be an integer or floating point type. I want to find the largest number y of type T for which y < x holds. The solution needs to be ...
4
votes
2answers
146 views
C++: Pure virtual type
I'm exploring template shenanigans in C++ (C++11), and one thing I'd like to have is a pure virtual type in an abstract class. This would be like Scala's abstract types. In C++ I'd want to do ...
2
votes
2answers
195 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
1answer
404 views
Dynamic filtering, sorting and paging on generic list with Entity Framework
I am using jQuery datatable (http://www.datatables.net) in my MVC4 app and as you may know this table allows server side processing. I am going to use the table in multiple views tied to multiple ...
1
vote
3answers
198 views
How to declare and instantiate a new Generic array?
I'm brushing up on my data structure skills. I found a great free book online called Open Data Structures in Java. After reading through it, I'm trying to create all the stated data structures with ...
0
votes
1answer
173 views
Check in reflection if type is primitive or type is object
Im using the following code to find class members in reflection that are primitive and some object ,my question is there is a way to identify if field is type primitive ,object ,class reference ...
1
vote
1answer
55 views
Does the current SYB permit extension of generic functions with new types?
The first two Scrap Your Boilerplate papers describe a way of writing generic functions that work for general types, but have special cases for specific types. For instance, fromJSON from the aeson ...
0
votes
1answer
136 views
How to set Property value using Reflection?
I try to build a Generic Method which take class and set value using reflection and return a class type.
protected static T GetSecureModel<T>(T model)
{
T secureModel = ...
0
votes
1answer
50 views
Nesting generic parameters
Is possible to nest generic parameters like class MyClass<TG<TM>>{} ?
I tried some ways and got the following code that works, but the class declaration needs to receive the two ...
3
votes
2answers
103 views
How to write below logic in Generic way?
I have a model like below
public sealed class Person
{
public string MobileNo { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
}
In ...
0
votes
3answers
143 views
Attaching an event handler to a generic type initialized using reflection at runtime with unknown type parameter
Please have a look at code below, which is based on the assumption that you have a controller class Controller. It is a generic class with constraint CGeneric where T:IRecord, two concrete record ...
4
votes
3answers
294 views
Increase compile-time variable with every instatiation of a generic class
I have this class:
template <typename T, uint64_t N>
struct Probe {
static const uint64_t Counter = N;
typedef T Type;
};
Which I utilize as:
typedef Probe <int, 0> FirstIntProbe;
...
1
vote
2answers
138 views
c++ function types in typedefs
Why doesn't the following typedef declaration for a function type compile?
typedef void( int ) void_from_int_t;
1
vote
1answer
116 views
defining iterators for a generic tree
I have this class called "Node". I've been considering renaming it "Tree", but either name makes about as much sense. This class implements a generic tree container. Each node can have any number of ...
0
votes
3answers
81 views
Switch according to input and return dynamic value
In this method I get string as input and according to the string name I need to return value sometimes its string sometime int ,double,int64 ,bool etc
Since its dynamic type i don't know how to define ...
4
votes
1answer
83 views
How to define SYB functions for type extension for tertiary type constructors (ext3)?
In the Scrap Your Boilerplate package, in Data.Generics.Aliases, there are functions to allow type extension for unary, and binary type constructors. In particular, there are definitions for ext1 and ...
1
vote
4answers
72 views
How can I write a single instruction to switch two values into a variable every time the instruction is being executed?
I'd like to write a single instruction to switch two values into a variable at every instruction execution; this is the generic case: having two values x1, x2 and i initialized to x1 or x2, switch i ...
2
votes
4answers
162 views
Why does template<typename T> evaluate to Foo instead of Bar in C++
In this code, why does typename T (in the Test(...) function) evaluate to type Foo instead of type Bar? And how can I change it so that it does become type Bar?
#include <typeinfo>
using ...
2
votes
2answers
91 views
Is there a way to tell what type a pointer is actually pointing to in C++
In C++ you can declare a pointer as one type, and then point it towards a different, inheriting type instead. Is there any way to tell which you're currently pointing at?
#include <typeinfo>
...
0
votes
2answers
181 views
Ideas to implement generic web service
I'm thinking of a mid / large scale project, which will need to store different data types and present them to different clients.
What I'm struggling now is, how to build a data and service layer ...
1
vote
3answers
200 views
Get Generic Type in Constructor in java
Is there a way to find generic type in constructor?
public class geneticarg {
public static void main(String[] args) {
a<String> a1 = new a<String>("a");
a<String> a2 = ...
9
votes
3answers
360 views
Why is std::less a class template?
According to 20.8.5 §1, std::less is a class template with a member function:
template<typename T>
struct less
{
bool operator()(const T& x, const T& y) const;
// ...
};
Which ...
0
votes
3answers
205 views
Container for pointers to member functions with different arguments
I am looking everywhere (Modern C++ design & co) but I can't find a nice way to store a set of callbacks that accept different arguments and operate on different classes. I need this because I ...
8
votes
1answer
118 views
programming language where values and objects are different
I am trying to get started with the 'Elements of Programming' by Alex Stepanov and Paul McJones. On Page5 last para: They say,
"This book uses a programming language that has no way to describe ...
5
votes
1answer
173 views
Generic functions for standard deviation in monte carlo C++
I am supposed to compute the standard deviation function in some monte carlo simulations. The formula is this one:
I think my results are way off what they should be. My function uses tuples from ...
0
votes
1answer
252 views
generic class for quickDialog forms
Let me first start with explaining the situation. I am making a IOS app that is working with a webservice and a webApplication. Take the following example.
Let's say we have company X. company X can ...
6
votes
1answer
61 views
Retrieving the unclosed type of a generic type closing a generic type
I’m having an issue (probably due to my lack of familiarity of C# generics) in getting the unclosed type of a generic. I have several methods that look rather similar to the following except for the ...
0
votes
0answers
499 views
find minimum of math fuction with genetic algorithm in matlab
I want to find the minimum value of function with genetic algorithm in matlab( I know matlab have toolbox for GA but I want achive it programmically ).
I have four m-file, Itterate 50 time,and in ...






