Constraints can be associated with a type parameter of a generic. Constraints declare items that must be supported by any concrete type passed to that parameter in a construction of the generic type.
2
votes
1answer
47 views
Generic type constraint on generic type
I have a class like this:
public class Proxy<TClient>()
where TClient : ClientBase<TChannel>
{
}
I want to be able to specify something like this:
where TClient : ...
3
votes
1answer
97 views
Functor instance for a GADT with type constraint
Today I wanted to investigate if it is possible to construct a data type in such a way, that it does not store the data of the type of its type signature, but another representation of it. So, here is ...
1
vote
2answers
25 views
C# use where keyword on classes with XmlElementAttribute properties
This is what I'm looking to do:
public class NormalClass
{
[XmlAttribute]
public int Example;
}
[XmlRoot]
public class GenericClass<T> where T : HasXmlElementAttribute
{
[XmlArray]
...
3
votes
4answers
95 views
Ensuring a generic collection contains objects that derive from two base objects
I have an interesting problem that I keep circling around, but I never seem to quiet find a solution.
I tend to be a defensive programmer, so I try to write code that prevents problems from happening ...
2
votes
2answers
80 views
A shorter type constraint for F#
I'm practicing with F# and I've though of implementing a type-constrained compare function for F#. In C#, it's implemented by this
// in C#
static int cmp<T>(T x, T y) where T: ...
4
votes
1answer
99 views
why does a missing optional parameter cause an “Incompatible types” error
Can someone please explain why I get an "Incompatible type" error (Delphi XE3) in the following program (see comments at the bottom of the code for details) when I omit an optional parameter for the ...
0
votes
2answers
50 views
How to C++11 static_assert for type constraint?
How can I make static_assert for specific type constraint?
Currently I want to make my template only for unsigned int type, but not signed int type. Or, just only for integral type, or specific type ...
1
vote
1answer
24 views
Passing childs of a specific parent class, with type constraints definition, as argument
I'm trying to create a method in which pass an argument that must implement a specific class which requires a type constraint.
I would to be able to put a generic type costraint argument.
Here a ...
4
votes
2answers
70 views
When to specify constraint `T : IEquatable<T>` even though it is not strictly required?
In short, I am looking for guidance on which of the following two methods should be preferred (and why):
static IEnumerable<T> DistinctA<T>(this IEnumerable<T> xs)
{
return new ...
0
votes
1answer
60 views
Scala type constraints confusing error
This code:
trait Base[+K <: Option[Int]] {
val a: K = None
}
class GuaranteedA extends Base[Some[Int]] {
override val a = Some(1)
}
produces an error:
<console>:8: error: type ...
2
votes
1answer
30 views
How to call a generic method with type constraints when the parameter doesn't have these constraints?
class A { }
interface I { }
void GenericStuff<T>(T x) { }
void SpecificStuff<T>(T x) where T : A, I { }
void Start<T>(T x)
{
if (x is A && x is I)
...
0
votes
1answer
92 views
Scala Generics Type Constraints
I am reading Programming Scala right now. I just got through the chapter on implicit type conversion, where the <% symbol is introduced. There is also a <: symbol and a < symbol.
Could ...
0
votes
1answer
33 views
Need advice on type constrain design in class template in C++, v11
I'd like to place a POD type constrain on type parameter T of class template A and then derive another class template B from the satisfactory A. Besides, B is supposed to have different implementation ...
11
votes
4answers
290 views
Static Guarantee on Key/Value Relationships in Data.Map
I want to make a special smart constructor for Data.Map with a certain constraint on the types of key/value pair relationships. This is the constraint I tried to express:
{-# LANGUAGE ...
5
votes
3answers
172 views
Type constraints in interface apply to base class
I have a base class that defines a generic method like this:
public class BaseClass
{
public T DoSomething<T> ()
{ ... }
}
As this class is by a third-party and does not come with an ...
0
votes
2answers
102 views
C# Generic type constraint muddle
I am having trouble with a generic type constraint. I have the below method, and im struggling to pass anything into the childSegments parameter, the first parameter i can get round.
private void ...
0
votes
1answer
241 views
Missing CUDA inline PTX constraint letter for 8 bit variables in order to disable L1 cache for 8 bit variable (bool)
INTRODUCTION
In this question we can learn how to disable L1 cache for one single variable.
Here is the accepted answer:
As mentioned above you can use inline PTX, here is an example:
...
3
votes
1answer
119 views
Type Lists with constraints
I'm trying to build a list at the type level, but I'm having some trouble figuring out how to enforce constraints.
My base code is:
data Foo z q = Foo1 (z q)
| Foo2 (z q)
class Qux q ...
2
votes
1answer
74 views
Is there an (elegant) solution to constrain a generic type argument further within a method?
I have a generic base class Foo<T> from which the classes Bar<U> and Bat<T> derive.
U derives from T. Bat and Bar are similar implementations that differ only in a few places where ...
11
votes
1answer
375 views
How much is applicative really about applying, rather than “combining”?
For an uncertainty-propagating Approximate type, I'd like to have instances for Functor through Monad. This however doesn't work because I need a vector space structure on the contained types, so it ...
0
votes
1answer
93 views
Type safe equivelent of constraining a type parameter of a generic method to an unclosed type of given interface
In C# is it possible to constrain the type parameter of a generic method such that it is restricted to an unclosed type of an interface in a type safe manner?
Let me elaborate...
For example I have ...
1
vote
1answer
178 views
Type Constraints on Generics C# - Multiple Constraints
I have a class that contains a two sets of data.
A list of values for X.
A list of values for Y.
Now, X and Y could hold either a string/double/integer/datetime in any possible combination. The ...
2
votes
2answers
103 views
Java Inheritance Constraints
I am trying to port some code I wrote in C# to Java, but do not know all of the Java syntax yet. I also have no idea what this type of thing is called, so it is harder to search..I am calling it ...
4
votes
1answer
95 views
Why does a null check cause an equality constraint in F#?
If a generic type is compared with null (and only with null), this causes the compiler to constrain the type both as nullable (which is ok) and as equatable.
Why the latter? It seems that just ...
2
votes
1answer
79 views
Ambigous type variable
I wrote a little haskell program that just counts how many ones there are in a number (Int). When I try to execute it haskell complains about ambigous variable constraints.
I know that it comes from ...
2
votes
2answers
62 views
Calling an overloaded function by using a generic variable as a parameter
I want to extend the BinaryWriter class to be able to write a list to a stream.
I want to do this with multiple types of lists. I set up this generic function as an extension
public static void ...
2
votes
2answers
370 views
Enum<? extends interface>
I'm attempting to have a collection of enums that extend a common interface, so something like:
interface Fooable
{
void someCommonMethod();
}
enum E1 implements Fooable
{
// some enumuerations ...
13
votes
2answers
248 views
How to put constraints on the associated data?
I would like to state that the associated data is always an instance of a certain class.
class (Context (Associated a b)) => Class a where
data Associated a :: * -> *
instance Context ...
8
votes
1answer
212 views
Is it possible to constrain a C# generic method type parameter as “assignable from” the containing class' type parameter?
I suspect the answer is no, but I want to know if it is possible to do something like this:
public class MyGenericClass<TSomeClass> {
public void MyGenericMethod<TSomeInterface>()
...
2
votes
1answer
375 views
Generic parameter base type: “There is no implicit reference conversion from B to A”
[Serializable]
public abstract class A
{
public A()
{
}
}
[Serializable]
public class B : A
{
public B() : base()
{
}
}
In an extension:
public static T ...
5
votes
2answers
474 views
OCaml : type constraints in signatures
In my code, I have a database access context that provides elementary read/write operations, called CouchDB.ctx. Various modules in my application then extend that class with additional functionality, ...
9
votes
2answers
236 views
Default constraint kinds are ignored
I encountered a strange problem when defining a default constraint. If a constraint is unit, the default instance is not chosen. In all other cases, it works as expected.
{-# LANGUAGE TypeFamilies, ...
10
votes
1answer
153 views
How can I combine two type constraints with a logical or in Haskell?
In Haskell we are given the ability to combine constraints on types with a logical and.
Consider the following
type And (a :: Constraint) b = (a, b)
or more complicatedly
class (a, b) => And a ...
2
votes
1answer
80 views
How do I constrain T to be an unsigned integral?
I have been trying the following
interface IUIntegral : IEquatable<Byte>, IEquatable<UInt16>, IEquatable<UInt32>, IEquatable<UInt64> { }
class Counter<T> where T : ...
1
vote
1answer
306 views
What is the best way to force the WPF DataGrid to add a specific new item?
I have a DataGrid in a WPF application which has for its ItemsSource a custom collection that I wrote. The collection enforces that all its items satisfy a certain requirement (namely they must be ...
0
votes
2answers
129 views
How to specify type constraint and inheritance on declaring class?
I've got an abstract class which has a type constraint. But i also want to make the abstract class implement an interface.
E.g:
public abstract class PostEvent<TPost> : IDomainEvent, where ...
8
votes
1answer
156 views
Equality on constraints
Basically, given {-# LANGUAGE PolymorphicKinds, ConstraintKinds, TypeFamilies #-} (and more, if necessary), does the (~) type-level operator work on type-level expressions of kind Constraint? I tried ...
5
votes
2answers
231 views
Why aren't type constraints part of the method signature?
So I read Eric Lippert's 'Constraints are not part of the signature', and now I understand that the spec specifies that type constraints are checked AFTER overload resolution, but I'm still not clear ...
6
votes
2answers
201 views
Why are conversions from “class A : IX” to generic “T where T : IX” not allowed?
Why does the following cause a compilation error?
interface IX {}
interface IY {}
class XY : IX, IY {}
void Foo<T>() where T : IX, IY
{
T xy = new XY();
… // ^^^^^^^^
} // ...
4
votes
1answer
166 views
Returning something from another type class B in function of type class A in Haskell
I'm doing a fun project in which I'm trying to redo some basic data types and concepts from Java. Currently I'm tackling Iterators.
My approach is the following:
(1) Translate Interfaces to ...
13
votes
2answers
601 views
Reflexive type parameter constraints: X<T> where T : X<T> ‒ any simpler alternatives?
Every so often I am making a simple interface more complicated by adding a self-referencing ("reflexive") type parameter constraint to it. For example, I might turn this:
interface ICloneable
{
...
1
vote
2answers
107 views
Can I create a generic object within a generic class where the class of the object to be created has constraints on the generic type parameter?
I have a generic interface,
public interface ICalculator<in T>
{
void Calculate(T input);
}
a general calculator,
public class GeneralCalculator<T> : ...
6
votes
2answers
203 views
Exchanging a type parameter's upper bound for an evidence parameter
I want to relax the constraints on a trait's type parameter and instead impose them on a method in the form of an evidence parameter. Given some skeletal setup:
trait State[ Repr ]
object Observer {
...
7
votes
2answers
242 views
How to constraint a generic to be of type enum?
Consider the following code:
class Base<T>
{
//Base members
}
I want the generic T to be an enum (using constraints if possible). How can I do this in C#?
EDIT:
Using code contracts ...
7
votes
2answers
207 views
Why is the compiler choosing this template function over an overloaded non-template function?
Using VC++ 2010, given the following:
class Base { };
class Derived : public Base { };
template<class T> void foo(T& t); // A
void foo(Base& base); // B
Derived d;
...
0
votes
3answers
264 views
Implementing lock in C++
Sorry that the question of this problem might be a bit vague. I'm trying to port this ObjectPool code from C# into C++ but seems there are some parts where I don't know how I should proceed. Codes are ...
5
votes
3answers
187 views
haskell — rank n constraints? (or, monad transformers and Data.Suitable)
I'm trying to write something that appears to be analagous to "rank 2 types", but for constraints instead. (Or, maybe it's not correct to assume changing -> in the definition of "rank 2 types" to ...
10
votes
5answers
266 views
Difference between interface as type constraint and interface as parameter?
If I wanted to create a method that takes an instance of IList as a parameter (or any other interface, but let's use IList as an example), I could create a generic method with a type constraint, e.g.:
...
4
votes
2answers
202 views
Typeclass constraint of different kind
I have been fiddling with general type classes for lists in Haskell.
class HasEmpty a where
empty :: a
isEmpty :: a -> Bool
class HasEmpty (l a) => List l where
cons :: a -> l a -> ...
3
votes
2answers
127 views
How does List.max<'T> work?
From MSDN docs, the signature of List.max is:
List.max : 'T list -> 'T (requires comparison)
My questions are:
How does compiler statically verify that 'T supports comparison operation?
Is ...
