About 8,110,000 results
Open links in new tab
  1. What is a type inference? - Stack Overflow

    Jan 7, 2021 · Type inference is a feature of some statically-typed languages. It is done by the compiler to assign types to entities that otherwise lack any type annotations. The compiler effectively just 'fills …

  2. implementing type inference - Stack Overflow

    May 28, 2015 · Chapter 13 (Type Reconstruction) of the new book DCPL, Design Concepts in Programming Languages. Selection of academic papers. Closure compiler's TypeInference is an …

  3. Inferred Type and Dynamic typing - Stack Overflow

    Jul 6, 2014 · In programming language what is the difference between Inferred Type and Dynamic typing? I know about Dynamic typing but don't get how dynamic typing is differ from Inferred Type …

  4. what is a fully type-inferred language? and limitations of such ...

    May 5, 2012 · What is full type inference? There is a broad spectrum to what degree a language can infer types, and in practice, almost no language supports "full" type inference in the strictest sense …

  5. Why can't the C# constructor infer type? - Stack Overflow

    Feb 1, 2016 · In order to maintain backwards compatibility a ctor on a non-generic type must always win. Is there a practical reason why the constructor can't support type inference? Yes. Even if the benefit …

  6. .net - Why doesn't C# infer my generic types? - Stack Overflow

    20 C# will not infer generic types based on the return type of a generic method, only the arguments to the method. It also doesn't use the constraints as part of the type inference, which eliminates the …

  7. type inference - In C, how does "auto" keyword is used before and …

    Dec 14, 2022 · There is no type inference in C11, neither associated with auto nor otherwise. auto has the same meaning in every version of C, and the specifics make that keyword mostly useless: if a …

  8. Is there auto type inferring in Java? - Stack Overflow

    Apr 21, 2013 · The term you're looking for isn't "auto", it's "type inference". There are quite a few questions about type inference in Java, though they mostly refer to generics, so I'm not sure how to …

  9. Newest 'type-inference' Questions - Stack Overflow

    Oct 23, 2025 · Why does Haskell's type inference give these functions different type signatures? [duplicate] I am a professor teaching Haskell in a programming languages class.

  10. c# - Type Inference failed in a call to 'join' on nullable and non ...

    Sep 8, 2011 · Type Inference failed in a call to 'join' on nullable and non-nullable int Asked 14 years, 3 months ago Modified 7 years, 5 months ago Viewed 31k times