Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
735 views

How does deriving work in Haskell?

ADTs in Haskell can automatically become instance of some typeclasses (like Show, Eq) by deriving from them. data Maybe a = Nothing | Just a deriving (Eq, Ord) My question is, how does this ...
4
votes
2answers
199 views

What is this C++ technique for adding types to a class called?

I've just found some C++ code (at http://msdn.microsoft.com/en-us/library/k8336763%28VS.71%29.aspx), which uses a technique I've never seen before to add types to an existing class: class Testpm { ...
1
vote
2answers
50 views

Return derived type in derived function

I have a search form that executes queries returning lists of objects that are sub-classes of a Contact class. When the lists are used in gridviews, properties that only exist in sub-classes (such as ...
1
vote
3answers
85 views

cast base class pointer to one of several possible derived type pointer based on condition

I have a base class B and several derived template classes D<int>, D<float>, D<double>, etc. (so more than ten) In my program, I find a situation where I have a B pointer that I ...
1
vote
2answers
225 views

Creating XmlSerializer that serializes/deserializes derived types correctly

I'm trying to create an XmlSerializer that serialize and deserializes derived types properly. Please take a look at the code below. Any assistance in using XmlAttributeOverrides ad extra types to ...
1
vote
0answers
68 views

What is the difference between darray and subarray in mpi?

I have a parallel i/o project for parallel programming class, i have to implement derived datatypes. I didn't clearly understand the difference between darray and subarray. Can darray be derived from ...
1
vote
1answer
107 views

Deriving a type and its dependencies

I've been playing with newtype wrappers for my indexes to avoid bugs, and I have some code like this: {-# LANGUAGE GeneralizedNewtypeDeriving #-} newtype PersonIdx = PersonIdx Int deriving (Enum, ...
0
votes
2answers
59 views

Pass derived type as array

In Fortran, one can operate on arrays, but how can one treat the indices of a derived type as part of an array too? Code would explain what I want to do best: type mytype integer :: b(3,3) ...
0
votes
1answer
64 views

Using MPI Derived Datatypes

After reading this, I am still wondering the best way to send C/C++ struct data. In fact, I have decided to use derived types, but I am running into problems. Immediately after MPI_Init(...), I have ...
0
votes
1answer
49 views

How to have a class contain different class types and call the members of those objects held?

In my program, I find a situation where I want a UserClass that is a container that can hold heterogenous types can call member functions of the objects held. The set of types that are held is ...
0
votes
3answers
212 views

How to Convert between Interface derived types?

In the most simplest for here is what I want to do: interface InterfaceA { string var1 { get; set; } string var2 { get; set; } } public class DerivedA : InterfaceA { public string var1 { ...
0
votes
0answers
269 views

Workaround/s to expose derived types' properties using OData

We want to expose the properties of our derived types with OData and we are using Entity Framework. But we always have the exception that we cannot access the navigation properties of those derived ...
0
votes
3answers
39 views

Pass a list of types, limiting the types to classes derived from a particular parent, in c#

I have a method on an object oriented database that creates tables based on their type. I want to be able to send a list of types to get created, but i'm hoping to limit them to only classes derived ...
0
votes
3answers
181 views

How do you make a Factory that can return derived types?

I have created a factory class called AlarmFactory as such... 1 class AlarmFactory 2 { 3 public static Alarm GetAlarm(AlarmTypes alarmType) //factory ensures that correct alarm is ...