Tagged Questions
The typeparameter tag has no wiki summary.
10
votes
5answers
120 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.:
...
8
votes
3answers
1k views
How to instantiate an instance of type represented by type parameter in Scala
example:
import scala.actors._
import Actor._
class BalanceActor[T <: Actor] extends Actor {
val workers: Int = 10
private lazy val actors = new Array[T](workers)
override def ...
7
votes
2answers
165 views
Warning about an unchecked type argument in this Scala pattern match?
This file:
object Test extends App {
val obj = List(1,2,3) : Object
val res = obj match {
case Seq(1,2,3) => "first"
case _ => "other"
}
println(res)
}
Gives ...
7
votes
3answers
158 views
In Java, why can't an array be a Type Variable's bound, but can be a Wildcard's bound?
In Java, why can't an array be a Type Variable's bound, but can be a Wildcard's bound?
You can have:
List< ? extends Integer[] > l;
but you can't have:
class MyClass< T extends Integer[] ...
7
votes
4answers
363 views
In Java, can an anonymous class declare its own type parameters?
Can an anonymous class declare its own type parameters?
7
votes
4answers
671 views
C# type parameters specification
Some special CLI types from mscorlib library (ArgIterator, TypedReference and RuntimeArgumentHandle types) cannot be used as generic type parameters to construct the generic types / methods:
void ...
6
votes
2answers
99 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 {
...
6
votes
5answers
221 views
Constraining an operation by matching a type parameter to an argument's path-dependent type
I would like to exploit Scala's type system to constrain operations in a system where there are versioned references to some values. This is all happening in some transactional context Ctx which has a ...
6
votes
4answers
207 views
Cannot compile a class which implements an interface without type parameter
I have the following test code:
public interface Container<I> {
public void addClass(Class<?> clazz);
}
public class MyContainer implements Container {
public void ...
6
votes
2answers
210 views
F#: explicit type parameters in operator binding
I'm trying to define operator with the explicit type parameters and constraints:
let inline (===)<'a, 'b
when 'a : not struct
and 'b : not struct> a b = obj.ReferenceEquals (a,b)
It ...
5
votes
3answers
113 views
Lambda function failing to call static functions of a function template parameter
Ok, so I have something setup basically like this:
template<typename T> void example()
{
std::function<int (byte*)> test = [=](byte* start) -> int
{
return T::magic(start);
}
}
...
5
votes
3answers
2k views
Can Scala allow free Type Parameters in arguments (are Scala Type Parameters first class citizens?)?
I have some Scala code that does something nifty with two different versions of a type-parameterized function. I have simplified this down a lot from my application but in the end my code full of ...
4
votes
3answers
288 views
How to create a Haskell function that would introduce a new type?
I'm currently writing an expression parser. I've done the lexical and syntactic analysis and now I'm checking the types. I have the expression in a data structire like this (simplified version):
data ...
4
votes
3answers
303 views
Circular type parameters definition in scala
I am trying to define a generic container whose elements can return the enclosing container. Something like:
abstract class Container[E <: Element] { // compile error
def contains( e: E ): ...
3
votes
3answers
56 views
Instantiate new object based on type parameter
I am trying to throw an exception based on the exception type parameter passed to the method.
Here is what I have so far but I don't want to specify each kind of exception:
public void ...
3
votes
2answers
60 views
Use a Type Defined in Generic Type
Apologies for the title - I really can't think of a very good way to describe my requirement.
I want to be able to define a generic interface (or class, it doesn't matter) whereby the Type parameter ...
3
votes
2answers
93 views
Typeparameter set from type argument
How do I convert my argument to a proper type declaration. Ie. how do I go from type to T in the following
class Foo<T>
{
Foo<??> MakeFoo(Type type)
{
return new ...
3
votes
5answers
249 views
How do I setup multiple ORed type bounds in Scala
Is it possible to do something like this in Scala:
class MyTest {
def foo[A <: String _or_ A <: Int](p:List[A]) = {}
}
That is, the type A could be a String or Int. Is this possible?
...
3
votes
4answers
181 views
Call a method of type parameter
Is there any way to do code such this:
class GenericClass<T>
{
void functionA()
{
T.A();
}
}
Or, how to call a function of type parameter (type is some my custom class).
3
votes
8answers
680 views
C# - Type Parameters in Constructor - No Generics
I have a class that I am trying to do unit tests on. The class is a WCF Service Class. (Making it a generics class is not my goal.)
I have a data access layer (DAL) type (called UserDAL) that is ...
3
votes
3answers
2k views
What's wrong with this reflection code? GetFields() is returning an empty array
C#, Net 2.0
Here's the code (I took out all my domain-specific stuff, and it still returns an empty array):
using System;
using System.Collections.Generic;
using System.Text;
using ...
2
votes
3answers
155 views
In Java, Type Variables' bounds can only be present in the Type Variable declaration, right?
Type Variables' bounds can only appear in the declaration of classes, interface, methods and constructors?
Or can I bound a type variable when they are used as type arguments?
Edit:
Example:
class ...
2
votes
1answer
287 views
Default type-parametrized function literal class parameter
Is this an intended behavior or is it a bug? Consider the following trait (be it a class, doesn't matter):
trait P[T] {
class Inner(val f: T => Unit = _ => println("nope"))
}
This is what ...
2
votes
2answers
134 views
parameter extends a class
I want to do a class thats accepts anything ordered and prints greater. (I'm just learning so I know it's a bit useless)
class PrinterOfGreater[T extends Ordered](val a:T, val b:T){println(a > b)}
...
2
votes
3answers
252 views
Instantiating a Type Parameter Without Passing an Object
My question is very similar to this question. I want to be able to instantiate an object of the type parameter type, but also without needing to pass in a "factory". I really need to be contained all ...
2
votes
3answers
2k views
How do I extend Java interface containing generic methods in Scala?
Suppose we have the following Java interface:
// Java
public interface Foo {
<T> T bar(Class<T> c);
}
How should I extend it in Scala? Writing
// Scala
class FooString extends Foo ...
1
vote
1answer
88 views
Can .NET implicitly find out one type parameter from another
We've got a base class for most of our domain object:
public class AbstractEntity<TKey>
{
public virtual TKey ID { get; set; }
}
Now, for example, I've got class MobileOperator : ...
1
vote
1answer
149 views
Annotating a function literal's implicit argument with a type
How do I annotate the argument of a function literal with a type if I want that argument to be implicit?
trait Test { def call[ C, T ]( fun: C => T ) : T }
def test1( t: Test ) {
t.call { c: ...
1
vote
2answers
184 views
It is possible in Scala use isAssignableFrom with type parameters
I am implementing a JAX-RS service in Scala using Jersey. I would to have a generic trait for Json provider, and I need to know if the requested Class is supported by my provider. In java is not ...
1
vote
2answers
250 views
How do I create a class that inherits from another and passes a type parameter in CodeDom?
Here's what I want the resulting class declaration to look like:
public sealed partial class Refund : DataObjectBase<Refund>
{
}
}
This code (snipped):
targetClass = new ...
1
vote
2answers
605 views
C# get the types defining a Dictionary at run time
I was wondering what is the best way for getting the generic arguments that definine a dictionary at run time is.
Take for example:
Dictionary<string, object> dict;
How at runtime can I find ...
1
vote
5answers
2k views
Get Type Parameter T from an instantiated System.Type?
I have the System.Type of a certain object but need to pass that over as a Type Parameter T to another method... is that somehow possible? Or am I lost in the bigger picture there?
0
votes
0answers
110 views
How to use the type of a function parameter for a successive type application (elegantly)
I am having a problem getting the proper type from a function argument to be passed in as a type parameter to another call. The following is an abstraction of my setup:
trait Version
trait KCtx[ V ...
0
votes
3answers
146 views
Can I refer to the type parameter in an MVC view?
Given a strongly typed view in ASP.Net MVC, is it possible to refer to the type parameter used to declare the view?
For example, if a page is declared as
<%@ Page Title="" Language="C#" ...
0
votes
2answers
87 views
What happens in a static parametrized class regarding its instance?
Suppose I have this class:
public class DispatcherService<T>
{
private static Action<T> Dispatcher;
public static void SetDispatcher(Action<T> action)
{
...
0
votes
3answers
313 views
Problem with Java Generics, type parameter, and returned list
This code is simplified as much as I can from a more complex class structure. In the real code, there were sub-types of the Integer and Double types I use here.
I'm trying to use Java Generics with a ...
0
votes
4answers
147 views
extension methods with generics - when does caller need to include type parameters?
Is there a rule for knowing when one has to pass the generic type parameters in the client code when calling an extension method?
So for example in the Program class why can I (a) not pass type ...
0
votes
2answers
207 views
How do I access and use generic type parameters as a regular type in C#?
I have a generic business object collection class which contains some business objects:
public abstract class BusinessObjectCollection<T> : ICollection<T>
where T : BusinessObject
...
-1
votes
1answer
147 views
inheritance from generic interface with type parameter
The code says it all :
interface a { }
interface ab : a { }
interface ac : a { }
interface igeneric<T> { }
//this is OK
class Clazz : igeneric<ab>, igeneric<ac>
{
}
//compiler ...