Type inference is the process of inferring types for programs automatically, using rules defined by a type system.
4
votes
1answer
69 views
Lambdas and type inference
I'm having a bit of trouble understanding the reason behind why the following code is giving me an error:
var funs = Enumerable.Range(0, 10).Select(x => (int y) => x + y);
foreach (var fun in ...
1
vote
1answer
57 views
type inference and string literals, how to do it?
How do I get this to compile?
Code
object Playground2 {
trait Client[S,A] {
def wrap[S,A](v: A): (S,A)
}
class TestClient extends Client[String, Int] {
override def ...
1
vote
2answers
49 views
Why can the c# compiler not resolve the argument types of a lambda expression in a ternary operator?
I have this code:
Action<A, B> fnUpdate = (someBool) ? (a, b) => a.propOne = b : (a, b) => a.propTwo = d;
Why can the compiler not resolve the types of a and b, just because it is ...
2
votes
4answers
42 views
Inheriting abstract classes with abstract properties
I have base class with abstract properties. I want all inheriting classes to override abstract properties. Example:
public class Person
{
public string Name{get;set;}
public string ...
1
vote
1answer
40 views
Using nested collections of lambda expressions to create an object graph
I am interested in utilizing lambda expressions to create a tree of property selectors.
The usage scenario is that we have some code that does some recursive reflection on an object graph, and to ...
0
votes
0answers
69 views
XText Chained Dependencies in Type Inference
In my experiments, it appears that XText cannot resolve variable types when there is a chain of dependencies across multiple XExpression blocks.
A minimal example, to illustrate. I have a grammar:
...
4
votes
1answer
135 views
Implicit conversion not working with type-safe builder pattern
I am using the Scala type-safe builder pattern for a simple rest request. This works great as a fluent api.
sealed abstract class Method(name: String)
case object GET extends Method("GET")
case ...
2
votes
2answers
139 views
F# inferred types in If/Then
If I have the following function:
let myFunc x y =
if y = 0 then 1
x
I get the error:
Program.fs(58,17): error FS0001: This expression was expected to have type
unit
but here has type
...
5
votes
1answer
50 views
Working around lack of partial generic type inference with constraints
I have an interface, which is use by repositories) that with this member:
T FindById<T, TId>(TId id)
where T : class, IEntity<TId>
where TId : IEquatable<TId>;
This allows ...
2
votes
0answers
39 views
Specify one generic parameter, infer the rest? [duplicate]
I have an interface, which is use by repositories) that with this member:
T FindById<T, TId>(TId id)
where T : class, IEntity<TId>
where TId : IEquatable<TId>;
This allows ...
0
votes
1answer
48 views
Tuple2 mistakenly inferred as Product in recursive Sclala function
I've got a function to create combinations from a List of Tuple2[Char,Int].
However when I make a recursive call on it I get a compile error, the Tuple is inferred as a Product.
Why is this and how ...
4
votes
1answer
74 views
Extension methods and type inference
I'm trying to make a fluent interface with lots of generics and descriptors that extend base descriptors.
I've put this in a github repo because pasting all of the code here would make it unreadable.
...
2
votes
2answers
54 views
Why does the value of an expression depend on the variable it's assigned to?
I tried to immitate the default keyword of C#:
private class Default[T] {
private var default : T = _
def get = default
}
Then in the package object I define:
def default[T] = new ...
1
vote
1answer
52 views
How to prevent compiler from choosing the least generic type?
I have a method that looks up some storage for an instance of a particular class:
def lookup[T >: Null: ClassTag]: T = {
// Print what class tag we got:
...
8
votes
1answer
126 views
Infer type of a string containing a Haskell expression
I need a (quick and dirty) way to get some representation of the type of a Haskell expression that is given as a string.
I currently see 3 options:
Use GHC API -- however, the documentation loses ...
0
votes
1answer
63 views
I don't agree with this type inference
I'm trying to write an OCaml evaluator in OCaml. Basically I need to imitate OCaml's typechecker. I have the following code, which should return a type but the compiler complains of type mismatch.
...
3
votes
4answers
155 views
Insert inferred type annotation for Scala val/var/def
At the moment, I type in type annotations for public vals, vars and defs in my Scala classes, traits and objects[1] - either by inferring the types of them mentally, or occasionally by hovering over ...
3
votes
3answers
95 views
Scala inferred type arguments - Type bounds inferring to 'Nothing'
I'm attempting to write a simple query monad and am having trouble getting my generic type annotations correct.
My first attempt went as follows (vastly simplified for conciseness)
case class ...
2
votes
1answer
88 views
D type inference depends on order of template arguments
T maybe(alias nullCheck, T)(T expr, T def)
{
if (nullCheck(expr))
{
return def;
}
else
{
return expr;
}
}
auto tokens = chomp(readln())
...
1
vote
1answer
56 views
OWL type inference with a restriction
I am studying the notion of OWL restrictions with Protege 4 using FaCT++ and a trivial ontology. Suppose I have an individual foo of class Something:
:Something a owl:Class.
:foo a :Something, ...
3
votes
1answer
90 views
Why can't OCaml infer the following type:
Consider the following code
module type Foo = sig
type t
val do_with_t : t -> unit
end
let any_foo t (module F : Foo) = F.do_with_t t
Which is rejected with the following lovely type ...
2
votes
4answers
170 views
Java Generic Type Inference Strange Behavior?
Can someone explain this behaviour to me:
Note: That T is never used in SomeThingGeneric
public static class SomeThingGeneric<T> {
public List<String> getSomeList() {
...
3
votes
2answers
112 views
How to pass a printf-style function to another function in F#
I'd like to make a function in F# that accepts a printf-style function as an argument, and uses that argument to output data. Usage would be something like the following:
OutputStuff printfn
My ...
4
votes
4answers
102 views
Record type inference
In the following code snippet
type myrec1 = {x: int; y: int}
type myrec2 = {x: int; y: int; z: int}
let p1 = {x = 1; y = 1} // Error. p1 compiler assumes p1 has the type myrec2
// It works with ...
0
votes
0answers
36 views
How to have scala infer types from a java method
I am trying to consume an external Java Service API in Scala by writing a wrapper around it. Each API call has a Request class and Response class, as well as a factory method to setup a call in the ...
0
votes
1answer
45 views
Type inference inconsistency
Let's say I have a wrapper class
case class Cont [E] (e : Seq[E]) {
def :: [E1 >: E] (e1 : Seq[E1]) : Cont[E1] = Cont(e1 ++ e)
def + [E1 >: E] (e1 : Seq[E1]) : Cont[E1] = Cont(e1 ++ e)
}
...
1
vote
0answers
60 views
Common supertype bound fails with type class resolution
When I have a generic class like this
case class C [E] (errors : Seq[E]){
def merge [E1 <: EX, EX >: E] (errors1 : Seq[E1]) = Seq[EX]() ++ errors ++ errors1
}
everything works - it merges ...
22
votes
3answers
1k views
Type inference with class implementing several interfaces of a hierarchy
As an example, let's use something like a calculator with elements of various types, functions that evaluate for different element types, and a context to store elements and run functions. The ...
5
votes
1answer
81 views
Type inference on nested generic functions
I've searched a bit about type inference, but I can't seem to apply any of the solutions to my particular problem.
I'm doing a lot of work with building and passing around functions. This seems to me ...
3
votes
1answer
102 views
Inferring correct types of lambdas in Scala
Why can't the compiler infer the types of x and y correctly?
I've read some articles about Scala's type inference but still can't figure out why it is impossible.
object Test {
def main(args: ...
1
vote
2answers
152 views
Is there a syntax does a reversed type inference?
When I tried to answer the question:
Is it possible to get rid of the TClient generic type in the Service class
I found a strange usage that I've never designed something of this kind of ...
2
votes
2answers
61 views
Why does Scalac type mismatch expect Int?
I was working on a project last night, and had some code like this:
/* fixes warnings in 2.10 */
import scala.language.implicitConversions
/* had some kind of case class with some members */
case ...
0
votes
1answer
104 views
Compiler not binding to correct generic method overload
Usually, the C# compiler is smart about method binding and type argument inference. But I seem to have stumped it.
class Obj
{
void Handler( int a, int b ) { }
Obj() { Method( "", Handler ...
0
votes
1answer
99 views
Type Inference with “auto;”
From Wikipedia
What is the use of the keyword auto
in this case (below) if not automatic type deduction?
struct SomeStruct {
auto func_name(int x, int y) -> int;
};
auto ...
13
votes
2answers
335 views
Understanding Polytypes in Hindley-Milner Type Inference
I'm reading the Wikipedia article on Hindley–Milner Type Inference trying to make some sense out of it. So far this is what I've understood:
Types are classified as either monotypes or polytypes.
...
2
votes
1answer
71 views
Java / Groovy generic type inference
I'm writing Groovy (1.8.8) code running under JDK6 and it seems the following is legal:
ConcurrentMap<Foo, Bar> statsRegistry = new ConcurrentHashMap<>()
Why is it permitted to omit the ...
17
votes
3answers
241 views
Java 7 generics type inference
Why the compiler is able to correctly infer the String type parameter in the case of a function return type.
public class Generics {
private static List<String> function() {
return ...
2
votes
1answer
159 views
Function type inference with recursive calls
I'm trying to implement a custom language that allows function return type to be inferred from its last statement. However, when a direct or indirect recursive function call is found, the type ...
4
votes
1answer
69 views
Actual type cannot be inferred for the method accepting Expression<Func>
I'm writing a small library for parsing resultsets of stored procedures (basically, very specific kind of ORM).
I have class
class ParserSetting<T> // T - type corresponding to particular ...
12
votes
1answer
734 views
What are the limitations on inference of higher-kinded types in Scala?
In the following simplified sample code:
case class One[A](a: A) // An identity functor
case class Twice[F[_], A](a: F[A], b: F[A]) // A functor transformer
type Twice1[F[_]] = ({type L[α] = Twice[F, ...
8
votes
1answer
411 views
Is is possible to improve type inference for partially applied types in Scala?
I'm trying to improve the type inference of the traverse_ function in the code below:
import scala.language.higherKinds
trait Applicative[AF[_]] {
def ap[A, B](a: AF[A])(f: AF[A => B]): AF[B]
...
2
votes
2answers
78 views
scala: classOf[], exceptions and :: operator for lists weird behavior
I have encountered some realy weird behavior in scala.
i wrote a generic method that takes as an argument an error prone code, and a list of "valid exceptions", and it should execute the code, while ...
2
votes
1answer
129 views
Why does type inference fails in this case?
The following code works well:
object InfDemo {
class Tag[T]
case object IntegerTag extends Tag[Int]
case object StringTag extends Tag[String]
val TagOfInteger: Tag[Int] = IntegerTag
...
5
votes
2answers
119 views
Scala Type Inference Issues with Parametric Function
I have been learning Scala these days, and today I ran into some issue that I cannot understand.
Suppose we have the following parametric function definition:
def filter[T](source: List[T], ...
3
votes
1answer
61 views
Inferred return type when passing function by template
My question is about having the compiler infer the return type of a function based on the return type of a function passed by template.
Is there some way I can call as
foo<bar>(7.3)
instead ...
4
votes
2answers
99 views
Inference of if … then … else strange behaviour
Considering the following bad code :
fun x =
if (null x) then 0
else (take 50 x) : (fun (drop 50 x))
I noticed, I can load it into ghci without any problem, and that's the problem.
The ...
0
votes
2answers
58 views
Instantiating a generic class (Java)
I have always been taught that when instantiating a generic class in your code to do it like so:
ArrayList<String> a = new ArrayList<String>();
But when I'm working in Eclipse it always ...
7
votes
5answers
162 views
Is there a way to specify a subset of type parameters in Scala, inferring the rest?
I have a class which looks like this:
class X[A <: Throwable, B, C](b: B, c: C)
A, B and C can be inferred, so I can just instantiate it with:
val x = new X(3, 4)
which gives me an X[Nothing, ...
2
votes
1answer
105 views
Why can't Scala infer the types from implicit evidence
I've tried this and it fails with error: missing parameter type for expanded function ((x$29) => x$29.sum).
Can someone please explain why this happens? Is this just that Scala's type inference is ...
1
vote
1answer
74 views
Writing a test expression that fits a certain type inference in F#
I'm brushing up on some key points in F# and my instructor has recommended a few exercises to help us grasp the concepts (not homework). He has given us certain types that the F# compiler would infer ...
